diff --git a/README.md b/README.md index 0440904..ac1dd7b 100644 --- a/README.md +++ b/README.md @@ -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: ``` diff --git a/push_puppetforge.py b/push_puppetforge.py index 5026870..24fe687 100755 --- a/push_puppetforge.py +++ b/push_puppetforge.py @@ -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: