Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
oracledb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
puppetpublic
oracledb
Commits
da4b9a16
Commit
da4b9a16
authored
11 years ago
by
Victor Chavez
Browse files
Options
Downloads
Patches
Plain Diff
oracledb::packages - added logoutput; oracledb::packages::no_tdp - added for
systems w/out TDP
parent
7477ed71
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
manifests/packages.pp
+15
-3
15 additions, 3 deletions
manifests/packages.pp
with
15 additions
and
3 deletions
manifests/packages.pp
+
15
−
3
View file @
da4b9a16
...
...
@@ -31,10 +31,22 @@ class oracledb::packages {
# rhel6 will give you an error if tdp BIN file not installed
default
:
{
exec
{
'check el6 tdp bin installed'
:
command
=>
'echo TDP is not installed! Install it by hand from \
/afs/ir/product/storage/TDPO_LINUX_LATEST'
,
unless
=>
'ls /opt/tivoli/tsm/client/oracle/properties/version/TSM_Data_Protection_Oracle.cmptag'
,
command
=>
'echo TDP is not installed! Install it by hand from \
/afs/ir/product/storage/TDPO_LINUX_LATEST'
,
logoutput
=>
true
,
unless
=>
'ls /opt/tivoli/tsm/client/oracle/properties/version/TSM_Data_Protection_Oracle.cmptag'
,
}
}
}
}
class
oracledb::packages::no_tdp
inherits
oracledb::packages
{
Exec
[
'check el6 tdp bin installed'
]
{
command
=>
'echo you probably want the oracledb::packages class instead of \
oracledb::packages::no_tdp, or you should uninstall TDP'
,
logoutput
=>
true
,
onlyif
=>
'ls /opt/tivoli/tsm/client/oracle/properties/version/TSM_Data_Protection_Oracle.cmptag'
,
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment