aboutsummaryrefslogtreecommitdiffstats
path: root/modules/git/templates
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2011-02-11 17:50:01 +0000
committerMichael Scherer <misc@mageia.org>2011-02-11 17:50:01 +0000
commite849bcd1b0729e432625d6f1d35758dfc20c8c02 (patch)
treee95512f167f51f1c94a316580509d0179222500b /modules/git/templates
parentb3aa611aea913cacae53aa547beac0954bd45308 (diff)
downloadpuppet-e849bcd1b0729e432625d6f1d35758dfc20c8c02.tar
puppet-e849bcd1b0729e432625d6f1d35758dfc20c8c02.tar.gz
puppet-e849bcd1b0729e432625d6f1d35758dfc20c8c02.tar.bz2
puppet-e849bcd1b0729e432625d6f1d35758dfc20c8c02.tar.xz
puppet-e849bcd1b0729e432625d6f1d35758dfc20c8c02.zip
use source instead of templates ( likely lighter, no need to parse the file for no reason )
Diffstat (limited to 'modules/git/templates')
-rw-r--r--modules/git/templates/apply_git_puppet_config.sh7
-rw-r--r--modules/git/templates/create_git_repo.sh11
2 files changed, 0 insertions, 18 deletions
diff --git a/modules/git/templates/apply_git_puppet_config.sh b/modules/git/templates/apply_git_puppet_config.sh
deleted file mode 100644
index 29ede998..00000000
--- a/modules/git/templates/apply_git_puppet_config.sh
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/bash
-
-while read line
-do
- # --local is a option for the newer git
- git config --add $line
-done < config.puppet
diff --git a/modules/git/templates/create_git_repo.sh b/modules/git/templates/create_git_repo.sh
deleted file mode 100644
index 1104edbe..00000000
--- a/modules/git/templates/create_git_repo.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/bash
-umask 0002
-# http://eagleas.livejournal.com/18907.html
-name="$1"
-mkdir -p $name
-cd $name
-git --bare init --shared=group
-chmod g+ws branches info objects refs
-( cd objects; chmod g+ws * )
-git config receive.denyNonFastForwards true
-