puts root-user's homedir (/root) under /data
authorThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Fri, 18 Aug 2006 14:35:52 +0000 (14:35 +0000)
committerThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Fri, 18 Aug 2006 14:35:52 +0000 (14:35 +0000)
build.sh
build_devel.sh

index 2a1f6df..0bbea3d 100755 (executable)
--- a/build.sh
+++ b/build.sh
 # root/ (mount point)
 # data/ (various data files)
 # data/etc/planetlab/ (configuration files)
+# data/root (root's homedir)
 #
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id$
+# $Id: build.sh,v 1.32 2006/08/16 21:44:48 mlhuang Exp $
 #
 
 . build.functions
@@ -126,9 +127,20 @@ echo "* myplc: Installing configuration file"
 install -D -m 444 $config data/etc/planetlab/default_config.xml
 install -D -m 444 plc_config.dtd data/etc/planetlab/plc_config.dtd
 
+# handle root's homedir and tweak root prompt
+echo "* myplc: root's homedir and prompt"
+roothome=data/root
+mkdir -p $roothome
+cat << EOF > $roothome/.profile
+export PS1="<plc> \$PS1"
+EOF
+chmod 644 $roothome/.profile
+
 # Move "data" directories out of the installation
+echo "* myplc: Moving data directories out of the installation"
 datadirs=(
 /etc/planetlab
+/root
 /var/lib/pgsql
 /var/www/html/alpina-logs
 /var/www/html/boot
index 5ad3e03..5b23db6 100755 (executable)
 # devel/data/cvs/ (local CVS repository)
 # devel/data/build/ (build area)
 # devel/data/etc/planetlab/ (configuration)
+# devel/data/root (root's home dir)
 #
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: build_devel.sh,v 1.3 2006/08/09 21:38:06 mlhuang Exp $
+# $Id: build_devel.sh,v 1.4 2006/08/11 18:34:59 thierry Exp $
 #
 
 . build.functions
@@ -64,10 +65,19 @@ find plc.d/functions | cpio -p -d -u devel/root/etc/
 install -D -m 755 guest.init devel/root/etc/init.d/plc
 chroot devel/root sh -c 'chkconfig --add plc; chkconfig plc on'
 
+# handle root's homedir and tweak root prompt
+echo "* myplc-devel: root's homedir and prompt"
+roothome=devel/data/root
+mkdir -p $roothome
+cat << EOF > $roothome/.profile
+export PS1="<plc-devel> \$PS1"
+EOF
+chmod 644 $roothome/.profile
+
 # Move "data" directories out of the installation
 echo "* myplc-devel: Moving data directories out of the installation"
 move_datadirs devel/root devel/data \
-    /etc/planetlab /build /cvs
+    /etc/planetlab /build /cvs /root
 
 # Make image out of directory
 echo "* myplc-devel: Building loopback image"