aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--modules/git/files/apply_git_puppet_config.sh (renamed from modules/git/templates/apply_git_puppet_config.sh)0
-rw-r--r--modules/git/files/create_git_repo.sh (renamed from modules/git/templates/create_git_repo.sh)0
-rw-r--r--modules/git/manifests/init.pp12
3 files changed, 6 insertions, 6 deletions
diff --git a/modules/git/templates/apply_git_puppet_config.sh b/modules/git/files/apply_git_puppet_config.sh
index 29ede998..29ede998 100644
--- a/modules/git/templates/apply_git_puppet_config.sh
+++ b/modules/git/files/apply_git_puppet_config.sh
diff --git a/modules/git/templates/create_git_repo.sh b/modules/git/files/create_git_repo.sh
index 1104edbe..1104edbe 100644
--- a/modules/git/templates/create_git_repo.sh
+++ b/modules/git/files/create_git_repo.sh
diff --git a/modules/git/manifests/init.pp b/modules/git/manifests/init.pp
index b4e1b6e1..1a3648fd 100644
--- a/modules/git/manifests/init.pp
+++ b/modules/git/manifests/init.pp
@@ -17,11 +17,11 @@ class git {
}
file { "/usr/local/bin/create_git_repo.sh":
- ensure => present,
- owner => root,
- group => root,
- mode => 755,
- content => template('git/create_git_repo.sh')
+ ensure => present,
+ owner => root,
+ group => root,
+ mode => 755,
+ source => 'puppet:///modules/git/create_git_repo.sh',
}
file { "/usr/local/bin/apply_git_puppet_config.sh":
@@ -29,7 +29,7 @@ class git {
owner => root,
group => root,
mode => 755,
- content => template('git/apply_git_puppet_config.sh')
+ source => 'puppet:///modules/git/apply_git_puppet_config.sh',
}