cleanup
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
parent
1d4c16ec2c
commit
d3c195bbd3
1 changed files with 14 additions and 3 deletions
|
@ -19,9 +19,16 @@
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# Standard variables (stolen from cconf)
|
||||||
|
#
|
||||||
|
__pwd="$(pwd -P)"
|
||||||
|
__mydir="${0%/*}"; __abs_mydir="$(cd "$__mydir" && pwd -P)"
|
||||||
|
__myname=${0##*/}; __abs_myname="$__abs_mydir/$__myname"
|
||||||
|
|
||||||
if [ $# -lt 3 ]; then
|
if [ $# -lt 3 ]; then
|
||||||
cat << eof
|
cat << eof
|
||||||
$0: <repo-name> <repo-admin> <trac|notrac> [comments]
|
$__myname: <repo-name> <repo-admin> <trac|notrac> [comments]
|
||||||
|
|
||||||
trac: Also create a trac instance for the svn repo.
|
trac: Also create a trac instance for the svn repo.
|
||||||
|
|
||||||
|
@ -39,7 +46,7 @@ if [ -z "$NETHZ_USERNAME" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
sendmail="/usr/sbin/sendmail"
|
sendmail="/usr/sbin/sendmail"
|
||||||
to="support@inf.ethz.ch systems-sysadmins@lists.inf.ethz.ch"
|
to="systems-sysadmins@lists.inf.ethz.ch"
|
||||||
from="${NETHZ_USERNAME}@ethz.ch"
|
from="${NETHZ_USERNAME}@ethz.ch"
|
||||||
|
|
||||||
reponame="$1"; shift
|
reponame="$1"; shift
|
||||||
|
@ -53,9 +60,11 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cat << eof | $sendmail -f "$from" $to
|
cat << eof | $sendmail -f "$from" $to
|
||||||
To: support@inf.ethz.ch, systems-sysadmins@lists.inf.ethz.ch
|
To: systems-sysadmins@lists.inf.ethz.ch
|
||||||
Subject: Request for new svn repo $reponame for OU Systems
|
Subject: Request for new svn repo $reponame for OU Systems
|
||||||
|
|
||||||
|
Sysadmin-Proxy: Forward this e-mail 1:1 to support@inf.ethz.ch.
|
||||||
|
|
||||||
Comments: $@
|
Comments: $@
|
||||||
Repository admin: $repoowner
|
Repository admin: $repoowner
|
||||||
Repository name: $reponame
|
Repository name: $reponame
|
||||||
|
@ -67,4 +76,6 @@ Cheers,
|
||||||
|
|
||||||
$USER
|
$USER
|
||||||
|
|
||||||
|
--
|
||||||
|
Send by ${__myname}
|
||||||
eof
|
eof
|
||||||
|
|
Loading…
Reference in a new issue