2010-09-08 14:44:48 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# 2010 Nico Schottelius (nico-nsbin at schottelius.org)
|
|
|
|
#
|
|
|
|
# This file is part of nsbin.
|
|
|
|
#
|
|
|
|
# nsbin is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# nsbin is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with nsbin. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# Order device at ISG
|
|
|
|
#
|
2010-11-30 15:38:58 +00:00
|
|
|
# ETHZ_FOND_TABLE:
|
|
|
|
#
|
|
|
|
# name lz fond
|
|
|
|
#
|
2010-09-08 14:44:48 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Standard variables (stolen from cconf)
|
|
|
|
#
|
|
|
|
__pwd="$(pwd -P)"
|
|
|
|
__mydir="${0%/*}"; __abs_mydir="$(cd "$__mydir" && pwd -P)"
|
|
|
|
__myname=${0##*/}; __abs_myname="$__abs_mydir/$__myname"
|
|
|
|
|
2010-09-08 14:52:50 +00:00
|
|
|
|
|
|
|
if [ -z "$NETHZ_USERNAME" -o -z "$ETHZ_FOND_TABLE" ]; then
|
|
|
|
echo "Error: Set \$NETHZ_USERNAME to your username"
|
|
|
|
echo "Error: Set \$ETHZ_FOND_TABLE to the fond table"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
all_profs="$(echo $(awk '{ print $1 }' "$ETHZ_FOND_TABLE"))"
|
2010-09-08 14:44:48 +00:00
|
|
|
|
2010-10-05 12:36:23 +00:00
|
|
|
if [ $# -lt 4 ]; then
|
2010-09-08 14:44:48 +00:00
|
|
|
cat << eof
|
2010-10-05 12:36:23 +00:00
|
|
|
$__myname: <fond> <vendor> <device> <office> [comment]
|
2010-09-08 14:44:48 +00:00
|
|
|
|
2010-09-08 14:52:50 +00:00
|
|
|
fond: a prof like $all_profs
|
2010-09-08 14:44:48 +00:00
|
|
|
|
2010-09-08 14:52:50 +00:00
|
|
|
device: as found on vendor site
|
2010-09-08 14:44:48 +00:00
|
|
|
|
2010-09-08 14:52:50 +00:00
|
|
|
Requires NETHZ_USERNAME and ETHZ_FOND_TABLE to be set.
|
2010-09-08 14:44:48 +00:00
|
|
|
|
2010-09-08 14:52:50 +00:00
|
|
|
Example: NETHZ_USERNAME="nicosc" ETHZ_FOND_TABLE="/path/to/it" $__myname myprof Banana 'Yellow, not green' 'trac: #42'
|
2010-09-08 14:44:48 +00:00
|
|
|
|
|
|
|
eof
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
sendmail="/usr/sbin/sendmail"
|
2010-09-08 15:07:42 +00:00
|
|
|
to="support@inf.ethz.ch nicosc@ethz.ch"
|
2010-09-08 14:44:48 +00:00
|
|
|
from="${NETHZ_USERNAME}@ethz.ch"
|
|
|
|
|
|
|
|
prof="$1"; shift
|
|
|
|
vendor="$1"; shift
|
|
|
|
device="$1"; shift
|
2010-10-05 12:36:23 +00:00
|
|
|
office="$1"; shift
|
2010-09-08 14:44:48 +00:00
|
|
|
|
2010-09-08 14:52:50 +00:00
|
|
|
lz="$(awk "/$prof/ { print \$2 }" "$ETHZ_FOND_TABLE")"
|
|
|
|
fond="$(awk "/$prof/ { print \$3 }" "$ETHZ_FOND_TABLE")"
|
2010-09-08 14:44:48 +00:00
|
|
|
|
|
|
|
cat << eof | $sendmail -f "$from" $to
|
|
|
|
To: support@inf.ethz.ch
|
2010-09-08 15:07:42 +00:00
|
|
|
Subject: Best. $vendor ($NETHZ_USERNAME, $lz)
|
2010-09-08 14:44:48 +00:00
|
|
|
|
|
|
|
Dear support@inf.ethz.ch,
|
|
|
|
|
|
|
|
here is the form data from $__myname.
|
|
|
|
|
|
|
|
Cost center: $lz
|
|
|
|
Description: Hoi Thomas!
|
|
|
|
|
|
|
|
Bitte folgendes von $vendor bestellen:
|
|
|
|
|
|
|
|
$device
|
|
|
|
|
2010-10-05 12:36:23 +00:00
|
|
|
und in Büro $office liefern.
|
|
|
|
|
2010-09-08 14:44:48 +00:00
|
|
|
$@
|
|
|
|
|
|
|
|
Viele Gruesse,
|
|
|
|
|
|
|
|
$USER
|
|
|
|
|
|
|
|
Fond: $fond
|
|
|
|
|
|
|
|
eof
|