Remove now obsolete precommit script for bzr.
[jelmer/etckeeper.git] / init.d / 50vcs-perm
1 #!/bin/sh
2 set -e
3
4 if [ "$VCS" = git ]; then
5         chmod 700 .git
6 elif [ "$VCS" = hg ]; then
7         chmod 700 .hg
8 elif [ "$VCS" = bzr ]; then
9         chmod 700 .bzr
10 fi