A Day in the Life

svnのrepos

いちいちパーミション変えたりするのがめんどくさくなったので適当shを作った。

#!/bin/sh
REPOS_DIR=/var/svn/repos
REPOS=$REPOS_DIR/$1
if [ $1 ]; then
  svnadmin create --fs-type=fsfs $REPOS
  chown -R svnserve:svnserve $REPOS
  chmod -R g+w $REPOS
fi
記事の一覧 >