From a4ca1e9edc61f3495e1076b05e1472149af09d51 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Wed, 6 Oct 2010 10:27:13 +0200 Subject: [PATCH] add script to have isg install a sans-lab machine Signed-off-by: Nico Schottelius --- eth/user/isg_sans_lab_install | 102 ++++++++++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100755 eth/user/isg_sans_lab_install diff --git a/eth/user/isg_sans_lab_install b/eth/user/isg_sans_lab_install new file mode 100755 index 0000000..408d942 --- /dev/null +++ b/eth/user/isg_sans_lab_install @@ -0,0 +1,102 @@ +#!/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 . +# +# +# Order device at ISG +# + +# +# Standard variables (stolen from cconf) +# +__pwd="$(pwd -P)" +__mydir="${0%/*}"; __abs_mydir="$(cd "$__mydir" && pwd -P)" +__myname=${0##*/}; __abs_myname="$__abs_mydir/$__myname" + + +if [ -z "$NETHZ_USERNAME" ]; then + echo "Error: Set \$NETHZ_USERNAME to your username" + exit 1 +fi + +if [ $# -lt 1 ]; then + cat << eof +$__myname: [carbon copy recipients] + + Requires NETHZ_USERNAME to be set. + + Example: NETHZ_USERNAME="nicosc" $__myname 30 user1 user2 + +eof + exit 1 +fi + +machine="sans-lab-$1"; shift + +headerto="support@inf.ethz.ch" +to="support@inf.ethz.ch $from" + +while [ $# -ge 1 ]; do + addr="$1@ethz.ch" + to="$to $addr" + headerto="$headerto, $addr" + shift +done + +sendmail="/usr/sbin/sendmail" +from="${NETHZ_USERNAME}@ethz.ch" +to="nicosc@ethz.ch" + +cat << eof | $sendmail -f "$from" $to +To: $headerto +From: $from +Subject: Installation request for Host $machine + +Dear support@inf.ethz.ch, + +here is the form data from TWiki. + +DNS Hostname: ${machine} +Graphics card: nvidia +HDD Size: 1000 +Keyboard Layout: en_us +MAC: IN DHCP +Model: Dalco +Name: Nico Schottelius +NumScreens: 1 +OU: Sans-lab +Office: cab/e/79 +Other Info: Wie alle anderen sans-lab Maschinen +Phone: 27609 +Resolution: 1920x1200 +Root: ISG +building: CAB +eMail Address: ${from} +group: Sans-lab +multiboot: Yes +os: Microsoft Windows 7 Enterprise 64bit, RedHat Enterprise Linux 5 (Workstation) +preserve-win: No +room: E/81 + +Sincerely + $USER + +-- +Send by ${__myname} + +eof