aboutsummaryrefslogtreecommitdiffstats
path: root/modules/git/files
diff options
context:
space:
mode:
Diffstat (limited to 'modules/git/files')
-rw-r--r--modules/git/files/apply_git_puppet_config.sh2
-rw-r--r--modules/git/files/create_git_repo.sh3
2 files changed, 2 insertions, 3 deletions
diff --git a/modules/git/files/apply_git_puppet_config.sh b/modules/git/files/apply_git_puppet_config.sh
index 29ede998..1ed6fbf1 100644
--- a/modules/git/files/apply_git_puppet_config.sh
+++ b/modules/git/files/apply_git_puppet_config.sh
@@ -4,4 +4,4 @@ while read line
do
# --local is a option for the newer git
git config --add $line
-done < config.puppet
+done < config.puppet
diff --git a/modules/git/files/create_git_repo.sh b/modules/git/files/create_git_repo.sh
index 1104edbe..144d063b 100644
--- a/modules/git/files/create_git_repo.sh
+++ b/modules/git/files/create_git_repo.sh
@@ -1,6 +1,6 @@
#!/bin/bash
umask 0002
-# http://eagleas.livejournal.com/18907.html
+# https://eagleas.livejournal.com/18907.html
name="$1"
mkdir -p $name
cd $name
@@ -8,4 +8,3 @@ git --bare init --shared=group
chmod g+ws branches info objects refs
( cd objects; chmod g+ws * )
git config receive.denyNonFastForwards true
-