run-in-pagsh: Figure out what user we're running as
[clinton/scripts.git] / run-in-pagsh
1 #!/usr/bin/pagsh.openafs
2 # -*- Shell-Script -*-
3 #
4 # Usage:
5 #
6 # run-in-pagsh [--fg] name command [argument ...]
7 #
8 # The argument `name' is a short description of the program to call,
9 # without any spaces. It is used for making a PID file, which ensures
10 # that only one instance of your command is running.
11 #
12 # The arguments that come afterward specify the command to run and its
13 # arguments, if any.
14 #
15 # If the command will run in the foreground, then you should use the
16 # `--fg' argument, making sure that it is the very first argument to
17 # run-in-pagsh.
18 #
19 # Examples:
20 #
21 # run-in-pagsh interchange ~/interchange/bin/interchange
22 #
23 # run-in-pagsh --fg clean-mail ~/scripts/clean-mail
24 #
25 # Make sure that the ~/.run directory exists and is writable.
26 # See http://wiki2.hcoop.net/MemberManual/RunningUnattendedCommands
27 # for instructions on how to accomplish this.
28
29 # Allow user to specify "--fg" argument.
30 if test "$1" = "--fg"; then
31 shift
32 BGFLAG=
33 else
34 BGFLAG=-b
35 fi
36
37 # Sanity checks.
38 if test -z "$2"; then
39 echo "Error: not enough arguments."
40 echo "Usage: run-in-pagsh name [--fg] command [argument ...]"
41 exit 1
42 elif test ! -d "$HOME/.run"; then
43 echo "Error: the ~/.run directory must exist before running this script."
44 exit 1
45 fi
46
47 # Use a different PID file for each program.
48 K5PID=$HOME/.run/$1.pid
49
50 # The command to run.
51 shift
52 CMD="$*"
53
54 # Try to deduce the user we're running as.
55 if test -z "$USER"; then
56 if test -n "$LOGNAME"; then
57 USER=$LOGNAME
58 elif test -n "$HOME"; then
59 USER=$(basename "$HOME")
60 else
61 echo "Error: cannot deduce your username"
62 exit 1
63 fi
64 fi
65
66 # Your keytab file.
67 KTAB=/etc/keytabs/user.daemon/$USER
68
69 # Terminate current k5start process, if one is running.
70 if test -f "$K5PID"; then
71 kill `cat -- "$K5PID"` 2>/dev/null
72 /usr/bin/k5start -qtU -f "$KTAB" -- rm -f "$K5PID"
73 fi
74
75 if test -n "$BGFLAG"; then
76
77 # Start fresh k5start daemon which will be refreshing tickets
78 # every 540 min.
79 /usr/bin/k5start -U -b -K 540 -t -p "$K5PID" -f "$KTAB"
80
81 # Run actual service with arguments as provided on command line.
82 $CMD
83
84 else
85
86 # Run the command once, in the foreground, cleaning up its PID
87 # file when done.
88 /usr/bin/k5start -U -K 540 -t -p "$K5PID" -f "$KTAB" -- $CMD
89 /usr/bin/k5start -qtU -f "$KTAB" -- rm -f "$K5PID"
90 fi