summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandreas <andreas@immerda.ch>2009-02-09 20:07:53 +0000
committerandreas <andreas@immerda.ch>2009-02-09 20:07:53 +0000
commitcbae560745a93de60b42a376e677ed3b42cc80f9 (patch)
tree31ce272a94f6519acf536404492a18e20f3a0bea
parent1b45dc12255b479ff1dc57832fe8be5112736780 (diff)
problem with dots in usernames, need colon as separator
-rw-r--r--manifests/defines.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/defines.pp b/manifests/defines.pp
index 81746ff..f12bff9 100644
--- a/manifests/defines.pp
+++ b/manifests/defines.pp
@@ -63,7 +63,7 @@ define git::clone(
notify => Exec["git-clone-chown"]
}
exec {"git-clone-chown":
- command => "chown -R ${cloneddir_user}.${cloneddir_group} $projectroot",
+ command => "chown -R ${cloneddir_user}:${cloneddir_group} $projectroot",
refreshonly => true
}
}