diff options
Diffstat (limited to 'modules/catdap/manifests/init.pp')
-rw-r--r-- | modules/catdap/manifests/init.pp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/catdap/manifests/init.pp b/modules/catdap/manifests/init.pp index 41ba5d13..a0f83ad1 100644 --- a/modules/catdap/manifests/init.pp +++ b/modules/catdap/manifests/init.pp @@ -1,6 +1,6 @@ class catdap { - $upstream_git = 'git://git.mageia.org/web/identity' + $upstream_git = "git://git.${::domain}/web/identity" # TODO switch to a proper rpm packaging $rpm_requirement = ['perl-Catalyst-Runtime', @@ -36,13 +36,13 @@ class catdap { $ldap_password = extlookup('catdap_ldap','x') - catdap::snapshot { "identity.$::domain": + catdap::snapshot { "identity.${::domain}": location => '/var/www/identity', git_location => $upstream_git, git_branch => 'topic/production', } - catdap::snapshot { "identity-trunk.$::domain": + catdap::snapshot { "identity-trunk.${::domain}": location => '/var/www/identity-trunk', git_location => $upstream_git, } |