diff options
Diffstat (limited to 'modules/git/manifests/init.pp')
-rw-r--r-- | modules/git/manifests/init.pp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/git/manifests/init.pp b/modules/git/manifests/init.pp index 93fcc7e5..98392c90 100644 --- a/modules/git/manifests/init.pp +++ b/modules/git/manifests/init.pp @@ -28,7 +28,9 @@ class git { } define repository { - # TODO + exec { "git init --bare $name": + creates => $name, + } } |