changes for 3.0
[monitor.git] / monitor.init
1 #!/bin/bash
2 #
3 # monitor  Enables the monitor account by setting up the ssh key from the enabled PLC.
4 #
5 # Load before nm, vcached, and vservers, vserver-reference
6 # chkconfig: 3 59 80
7 # description: Fetch monitor ssh key to enable access to machine via monitor immediately.
8 #
9 # Stephen Soltesz <soltesz@cs.princeton.edu>
10 # Copyright (C) 2008 The Trustees of Princeton University
11 #
12 # $Id$
13 #
14
15 case "$1" in
16     start|restart|reload)
17         ;;
18     stop|status)
19         exit 0
20         ;;
21     *)
22         echo $"Usage: $0 {start|stop|restart|status}"
23         exit 1
24         ;;
25 esac
26
27 # NOTE: If user already exists, this just exists with status 9.  I think it's
28 # ok to simply let this command check and error out.
29 # Parse PLC configuration
30 if [ -r /etc/planetlab/plc_config ] ; then
31     . /etc/planetlab/plc_config
32 else
33     PLC_NAME="PlanetLab"
34     PLC_SLICE_PREFIX="pl"
35     PLC_BOOT_HOST="boot.planet-lab.org"
36 fi
37
38 USER="${PLC_SLICE_PREFIX}_monitor"
39 /usr/sbin/useradd -p "" -m $USER &> /dev/null || : 
40
41 if [ ! -d /home/$USER/.ssh ] ; then
42         mkdir /home/$USER/.ssh
43         chmod 700 /home/$USER/.ssh
44         chown $USER.$USER /home/$USER/.ssh
45 fi
46
47 URL="http://${PLC_BOOT_HOST}/PlanetLabConf/keys.php?$USER"
48 curl -s "$URL" > /home/$USER/.ssh/authorized_keys
49 chown $USER.$USER /home/$USER/.ssh/authorized_keys