Skip to content

Commit

Permalink
Update default puppet-forge path
Browse files Browse the repository at this point in the history
  • Loading branch information
ggatward committed Jan 3, 2017
1 parent 9b94245 commit dabf49d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,9 @@ perform a special export of puppetforge modules from the Satellite puppet-forge
repository (-r) in the directory structure required by the puppet-forge-server
application. After exporting, the modules are copied via rsync to the puppet-forge-server.
The puppet-forge-server hostname can be defined in the config.yml, or overridden with
(-s), as can the module path (-m) on the remote server. The user performing the rsync
will be the user that is running the script, unless overridden with (-u).
(-s), as can the module path (-m) on the remote server (default is /opt/puppet-forge/modules).
The user performing the rsync will be the user that is running the script, unless
overridden with (-u).

The config.yml block that defines the puppet-forge-server hostname is:
```
Expand Down
2 changes: 1 addition & 1 deletion push_puppetforge.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def main(args):
if args.modulepath:
modpath = args.modulepath
else:
modpath = '/opt/puppetforge/modules'
modpath = '/opt/puppet-forge/modules'

# Set the username to use to push modules
if args.user:
Expand Down

0 comments on commit dabf49d

Please sign in to comment.