]> oss.titaniummirror.com Git - repo_shell.git/blobdiff - scripts/gitcreate
git_acl_file is always {git_root}/.gitacls
[repo_shell.git] / scripts / gitcreate
index 2c655157aa0a373f0007314318e091b06803fdfe..cab983e43988601e24017180b53bdcfde2d0d3d6 100755 (executable)
@@ -1,10 +1,11 @@
 #!/bin/sh
 # gitcreate is part of the repo_shell distribution.
 
-source /etc/repo_shell.cfg
-if [ -z "$owner" -o -z "$git_root" -o -z "$git_acl_file" ]; then
-    echo "$0: please configure /etc/repo_shell.cfg"
+eval $(sed -e 's| ||g' < /etc/repo_shell.conf)
+if [ -z "$owner" -o -z "$git_root" ]; then
+    echo "$0: please configure /etc/repo_shell.conf"
 fi
+gitacls="$git_root/.gitacls"
 
 if [ "$(whoami)" != "$owner" ]; then
     echo "$0: must run as user $owner" >&2
@@ -23,9 +24,10 @@ fi
 
 # Create the respository
 umask 027
-git --git-dir "$git_root/$1.git" init --bare
+git --git-dir "$git_root/$1" init --bare
 [ $? -ne 0 ] && exit 1
 
-echo "Repository created.
-Be sure to edit $git_acl_file to allow user access, if needed."
+[ -f "$gitacls" ] && echo "Check $gitacls for proper access permissions"
+echo "Repository created."
+[ ! -f "$gitacls" ] && echo "WARNING: $gitacls DOES NOT EXIST!"
 exit 0