File tree Expand file tree Collapse file tree 3 files changed +16
-12
lines changed Expand file tree Collapse file tree 3 files changed +16
-12
lines changed Original file line number Diff line number Diff line change @@ -69,8 +69,8 @@ Example usage for installing to a custom location:
69
69
70
70
``` puppet
71
71
class { 'ibm_installation_manager':
72
- source => 'http://internal.lan/packages/IM.zip',
73
- target => '/opt/myorg/IBM',
72
+ source => 'http://internal.lan/packages/IM.zip',
73
+ target => '/opt/myorg/IBM',
74
74
}
75
75
```
76
76
Original file line number Diff line number Diff line change 1
- # Example of installing Installation Manager to '/opt/IBM'. In this example,
2
- # We've downloaded and extracted the Installation Manager packages (installer)
3
- # to '/vagrant/ibm/IM'
1
+ # Example of installing Installation Manager to the default location of
2
+ # '/opt/IBM/InstallationManager'. In this example, we've downloaded and
3
+ # extracted the Installation Manager packages (installer) to '/vagrant/ibm/IM'
4
4
class { 'ibm_installation_manager' :
5
- deploy_source => false ,
6
- source_dir => ' /vagrant/ibm/IM' ,
7
- base_dir => ' /opt/IBM' ,
5
+ source_dir => ' /vagrant/ibm/IM' ,
6
+ }
7
+
8
+ # Example of providing a zip source and a custom install location
9
+ # This will retrieve the zip file from /mnt/IBM and extract it to
10
+ # /opt/IBM/tmp/InstallationManager. Installation Manager will then be
11
+ # installed to '/opt/myorg/InstallationManager'
12
+ class { 'ibm_installation_manager' :
13
+ source => ' /mnt/IBM/im.zip' ,
14
+ source_dir => ' /opt/IBM/tmp/InstallationManager' ,
15
+ target => ' /opt/myorg/InstallationManager' ,
8
16
}
Original file line number Diff line number Diff line change 34
34
# [*group*]
35
35
# Group to run the installer as. Defaults to 'root'
36
36
#
37
- # === Variables
38
- #
39
- #
40
37
# === Examples
41
38
#
42
39
# class { 'installation_manager':
43
40
# source => '/mnt/IBM/IM.zip',
44
- # source_dir => '/opt/IBM',
45
41
# }
46
42
#
47
43
# === Authors
You can’t perform that action at this time.
0 commit comments