diff options
author | Jamie McClelland <jm@mayfirst.org> | 2011-03-19 23:39:53 -0400 |
---|---|---|
committer | Jamie McClelland <jm@mayfirst.org> | 2011-03-19 23:39:53 -0400 |
commit | e5ca936850b4a7cbcbbb003a1795d23c05760e17 (patch) | |
tree | 1017b78c7d9201e95dc78ea96ae9ab0d52d605e1 /manifests | |
parent | 6daf83e2b81d4a33bb1739c9f4b6c9882e6e1ea2 (diff) | |
download | puppet-monkeysphere-e5ca936850b4a7cbcbbb003a1795d23c05760e17.tar.gz puppet-monkeysphere-e5ca936850b4a7cbcbbb003a1795d23c05760e17.tar.bz2 |
default file location does not have a period
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index c25e1f7..0487bb7 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -92,7 +92,7 @@ define monkeysphere::add_id_certifier( $keyid ) { } } -define monkeysphere::authorized_user_ids( $source, $dest_dir = '/root/.monkeysphere', $dest_file = '.authorized_user_ids', $group = '') { +define monkeysphere::authorized_user_ids( $source, $dest_dir = '/root/.monkeysphere', $dest_file = 'authorized_user_ids', $group = '') { $user = $title $calculated_group = $group ? { '' => $user, |