From 9bc6a43d1017d87d6b7f6338cf313dbeb4b4bdb4 Mon Sep 17 00:00:00 2001 From: mwolson_admin Date: Tue, 13 Nov 2007 18:11:40 -0500 Subject: [PATCH] run-in-pagsh improvements - Take --fg argument, which tells run-in-pagsh that we are running the command in the foreground, and should clean up k5start's PID file. - Send kill errors to /dev/null. --- run-in-pagsh | 52 ++++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 40 insertions(+), 12 deletions(-) diff --git a/run-in-pagsh b/run-in-pagsh index 3d4f6cb..a8bcef8 100755 --- a/run-in-pagsh +++ b/run-in-pagsh @@ -3,24 +3,41 @@ # # Usage: # -# run-in-pagsh name command [arguments] ... +# run-in-pagsh [--fg] name command [argument ...] # -# The first argument, `name', is a short description of the program to -# call, without any spaces. It is used for making a PID file, which -# ensures that only one instance of your command is running. +# The argument `name' is a short description of the program to call, +# without any spaces. It is used for making a PID file, which ensures +# that only one instance of your command is running. # -# Example: +# The arguments that come afterward specify the command to run and its +# arguments, if any. +# +# If the command will run in the foreground, then you should use the +# `--fg' argument, making sure that it is the very first argument to +# run-in-pagsh. +# +# Examples: # # run-in-pagsh interchange ~/interchange/bin/interchange # +# run-in-pagsh --fg clean-mail ~/scripts/clean-mail +# # Make sure that the ~/.run directory exists and is writable. # See http://wiki2.hcoop.net/MemberManual/RunningUnattendedCommands # for instructions on how to accomplish this. -# Sanity checks +# Allow user to specify "--fg" argument. +if test "$1" = "--fg"; then + shift + BGFLAG= +else + BGFLAG=-b +fi + +# Sanity checks. if test -z "$2"; then echo "Error: not enough arguments." - echo "Usage: run-in-pagsh name command [arguments] ..." + echo "Usage: run-in-pagsh name [--fg] command [argument ...]" exit 1 elif test ! -d "$HOME/.run"; then echo "Error: the ~/.run directory must exist before running this script." @@ -39,12 +56,23 @@ KTAB=/etc/keytabs/user.daemon/$USER # Terminate current k5start process, if one is running. if test -f "$K5PID"; then - kill `cat -- "$K5PID"` + kill `cat -- "$K5PID"` 2>/dev/null /usr/bin/k5start -qtU -f "$KTAB" -- rm -f "$K5PID" fi -# Start fresh k5start daemon which will be refreshing tickets every 540 min -/usr/bin/k5start -U -b -K 540 -t -p "$K5PID" -f "$KTAB" +if test -n "$BGFLAG"; then -# Run actual service with arguments as provided on command line -$CMD + # Start fresh k5start daemon which will be refreshing tickets + # every 540 min. + /usr/bin/k5start -U -b -K 540 -t -p "$K5PID" -f "$KTAB" + + # Run actual service with arguments as provided on command line. + $CMD + +else + + # Run the command once, in the foreground, cleaning up its PID + # file when done. + /usr/bin/k5start -U -K 540 -t -p "$K5PID" -f "$KTAB" -- $CMD + /usr/bin/k5start -qtU -f "$KTAB" -- rm -f "$K5PID" +fi -- 2.20.1