diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2012-01-04 18:58:42 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2012-01-04 18:58:42 -0200 |
commit | 89efc71c66b1da224a0163f5bf7fd9a06eac1989 (patch) | |
tree | 1b77b676a411657b938244568ba7b5c298b06b4e /share/hydractl/backup-restore-gitosis | |
parent | 8473f166cc59c3ec3c1db16459cf6b8cfc67fbb5 (diff) | |
download | hydra-89efc71c66b1da224a0163f5bf7fd9a06eac1989.tar.gz hydra-89efc71c66b1da224a0163f5bf7fd9a06eac1989.tar.bz2 |
Syntax fixes
Diffstat (limited to 'share/hydractl/backup-restore-gitosis')
-rwxr-xr-x | share/hydractl/backup-restore-gitosis | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/share/hydractl/backup-restore-gitosis b/share/hydractl/backup-restore-gitosis index f8435d6..826dd6e 100755 --- a/share/hydractl/backup-restore-gitosis +++ b/share/hydractl/backup-restore-gitosis @@ -25,16 +25,16 @@ fi # Set git user. if hydra_check_user gitosis; then - $GIT_USER="gitosis" + GIT_USER="gitosis" else - $GIT_USER="root" + GIT_USER="root" fi # Set git group. if hydra_check_group gitosis; then - $GIT_GROUP="gitosis" + GIT_GROUP="gitosis" else - $GIT_GROUP="root" + GIT_GROUP="root" fi # Backup it. |