Skip to content

Commit dabf49d

Browse files
committed
Update default puppet-forge path
1 parent 9b94245 commit dabf49d

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,8 +256,9 @@ perform a special export of puppetforge modules from the Satellite puppet-forge
256256
repository (-r) in the directory structure required by the puppet-forge-server
257257
application. After exporting, the modules are copied via rsync to the puppet-forge-server.
258258
The puppet-forge-server hostname can be defined in the config.yml, or overridden with
259-
(-s), as can the module path (-m) on the remote server. The user performing the rsync
260-
will be the user that is running the script, unless overridden with (-u).
259+
(-s), as can the module path (-m) on the remote server (default is /opt/puppet-forge/modules).
260+
The user performing the rsync will be the user that is running the script, unless
261+
overridden with (-u).
261262

262263
The config.yml block that defines the puppet-forge-server hostname is:
263264
```

push_puppetforge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def main(args):
148148
if args.modulepath:
149149
modpath = args.modulepath
150150
else:
151-
modpath = '/opt/puppetforge/modules'
151+
modpath = '/opt/puppet-forge/modules'
152152

153153
# Set the username to use to push modules
154154
if args.user:

0 commit comments

Comments
 (0)