source: locker/bin/signup-minimal @ 641

Last change on this file since 641 was 641, checked in by broder, 16 years ago
*mumble stupid Sun dialups* - changed signup-minimal to use /bin/bash
  • Property svn:executable set to *
File size: 2.8 KB
Line 
1#!/bin/bash
2
3if [ "$initlname" = "" ]; then
4  if [ "$lname" = "" ]; then
5    initlname=0
6  else
7    initlname=1
8  fi
9fi
10
11if type wget >/dev/null 2>/dev/null; then
12  WGET=wget
13else
14  WGET="athrun gnu wget"
15fi
16
17if [ "$lname" = "" ]; then
18  if [ "$1" = "" ]; then
19    echo
20    echo "Would you like to sign up:"
21    echo "1. Your personal Athena account"
22    echo "2. A locker that you control (a club, a course, etc)"
23    echo "If you do not understand this question, you should answer '1'."
24    printf "Please enter either '1' or '2' (without quotes): "
25    read whofor
26    if [ "$whofor" = 1 ]; then
27        lname=$USER
28        lroot=$HOME
29    elif [ "$whofor" = 2 ]; then
30        echo
31        echo "OK.  A locker of your choice that you control will be signed up."
32        echo "Please enter the name of the selected locker below."
33        echo "(For the locker /mit/sipb, you would enter sipb)."
34        while printf "Locker name: "; read lname; ! attach "$lname" 2>/dev/null; do
35                echo "$lname is not a valid locker name."
36        done
37        lroot="/mit/$lname"
38    else
39        echo
40        echo "ERROR:"
41        echo "You must select either '1' or '2'."
42        exit 1
43    fi
44  else
45    lname=$1
46  fi
47fi
48
49ans=`$WGET -q -O- "http://scripts.mit.edu/~signup/fsla.php/mit/$lname"`
50if [ "$ans" != "0" ]; then
51  echo
52  echo "ERROR:"
53  echo "The scripts servers cannot verify the permissions of the locker <$lname>."
54  echo "Try running \"fs sa /mit/$lname daemon.scripts l\" (with a lowercase"
55  echo "L at the end) and then try again. Contact scripts@mit.edu if you are"
56  echo "unable to solve the problem."
57  exit 1
58fi
59
60principal=`klist -5 | sed -n 's/^Default principal: // p'`
61ans=`$WGET -q -O- "http://scripts.mit.edu/~signup/admof.php/$lname/$principal"`
62if [ "$ans" != "yes" ]; then
63  afsuser=`echo "$principal" | sed 's/@ATHENA.MIT.EDU$//'`
64  echo
65  echo "ERROR:"
66  echo "It appears as though you are not an administrator of the locker <$lname>."
67  echo "Try running \"fs sa /mit/$lname $afsuser all\" and starting over."
68  echo "Contact scripts@mit.edu if you are unable to solve the problem."
69  exit 1
70fi
71
72mkdir "/mit/$lname/.scripts-signup" 2>/dev/null
73
74if [ ! -d "/mit/$lname/.scripts-signup" ]; then
75  echo
76  echo "ERROR:"
77  echo "It appears as though you do not have write access to the locker <$lname>."
78  echo "Contact scripts@mit.edu if you are unable to solve the problem."
79  exit 1
80fi
81
82ans=`$WGET -q -O- "http://scripts.mit.edu/~signup/$lname"`
83rmdir "/mit/$lname/.scripts-signup"
84
85if [ "$ans" != "done" ] && [ "$ans" != "username already taken" ]; then
86  echo "ERROR:"
87  echo "Signup reported the following error: \"$ans\"."
88  echo "Contact scripts@mit.edu for assistance."
89  exit 1
90fi
91
92success() {
93  if [ "$initlname" -eq 0 ]; then
94    echo
95    echo "== SUCCESS =="
96    echo "$lname is now signed up for $1."
97    echo "$2"
98    echo
99  fi
100}
Note: See TracBrowser for help on using the repository browser.