This commit was manufactured by cvs2svn to create branch
[sliceimage.git] / vserver-reference.init
1 #!/bin/bash
2 #
3 # vserver-reference     Updates VServer reference
4 #
5 # Load before pl_conf, pl_nm, vcached, and vservers
6 # chkconfig: 3 60 80
7 # description: Builds VServer reference image
8 #
9 # Mark Huang <mlhuang@cs.princeton.edu>
10 # Copyright (C) 2004 The Trustees of Princeton University
11 #
12 # $Id: vserver-reference.init,v 1.19.4.2 2006/05/08 20:53:35 mlhuang Exp $
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 # Source function library.
28 . /etc/init.d/functions
29
30 # VServer definitions
31 . /usr/lib/util-vserver/util-vserver-vars
32
33 # Parse PLC configuration
34 if [ -r /etc/planetlab/plc_config ] ; then
35     . /etc/planetlab/plc_config
36 else
37     PLC_NAME="PlanetLab"
38     PLC_SLICE_PREFIX="pl"
39     PLC_BOOT_HOST="boot.planet-lab.org"
40 fi
41
42 # Save stdout and stderr
43 exec 3>&1
44 exec 4>&2
45
46 # Redirect stdout and stderr to a log file
47 exec 2>&1
48 exec &>/var/log/vserver-reference.log
49
50 echo -n $"Updating VServer reference: " >&3 2>&4
51
52 shopt -s nullglob
53
54 VROOTS="$__DEFAULT_VSERVERDIR/vserver-reference $__DEFAULT_VSERVERDIR/.vcache/* $__DEFAULT_VSERVERDIR/${PLC_SLICE_PREFIX}_*"
55
56 # Make sure the barrier bit is set
57 chmod 0000 /vservers
58 setattr --barrier /vservers
59
60 # Copy configuration files from host to slices
61 for file in /etc/hosts /etc/resolv.conf /etc/yum.conf /etc/planetlab/node_id \
62             /etc/planetlab/plc_config* /etc/planetlab/php/* \
63             /etc/pki/rpm-gpg/* ; do
64     if [ -r $file ] ; then
65         for vroot in $VROOTS ; do
66             install -D -m 644 $file $vroot/$file
67         done
68     fi
69 done
70
71 # (Re)install GPG signing keys
72 if [ -d /etc/pki/rpm-gpg ] ; then
73     for vroot in $VROOTS ; do
74         chroot $vroot rpm --allmatches -e gpg-pubkey || :
75         chroot $vroot rpm --import /etc/pki/rpm-gpg/* || :
76     done
77 fi
78
79 # Old versions of the Boot Manager copied portions of the Boot CD to
80 # /mnt/cdrom/bootme, to support old scripts which assumed that the
81 # Boot CD was mounted even in production mode. Now, it just copies it
82 # to /usr/boot/cacert.pem. In any case, copy the boot server
83 # certificate to the place(s) where BootServerRequest expects to find
84 # it (/usr/boot/cacert.pem by default, /mnt/cdrom/bootme in old
85 # versions).
86 CACERT="/usr/boot/cacert.pem /mnt/cdrom/bootme/cacert/$PLC_BOOT_HOST/cacert.pem"
87 for cacert in $CACERT ; do
88     if [ -r $cacert ] ; then
89         for vroot in $VROOTS ; do
90             # Install boot server certificate
91             install -D -m 644 $cacert $vroot/usr/boot/cacert.pem
92             echo $PLC_BOOT_HOST > $vroot/usr/boot/boot_server
93
94             # Also install in /mnt/cdrom/bootme for backward compatibility
95             install -D -m 644 $cacert $vroot/mnt/cdrom/bootme/cacert/$PLC_BOOT_HOST/cacert.pem
96             echo $PLC_BOOT_HOST > $vroot/mnt/cdrom/bootme/BOOTSERVER
97         done
98         break
99     fi
100 done
101
102 success >&3 2>&4
103 echo >&3 2>&4
104 exit 0