X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=vserver-reference.init;h=287e5a2d5a6eced20b38afa6915a83b44a8b6df3;hb=3df81b45200fceeb1e4ae5adfa68d5e2f67930c8;hp=ae177f4dca64c9ba7354cf2518aac74964eda3df;hpb=cdf9b6a6950b4c326665d53ab224e9d65567777f;p=vserver-reference.git diff --git a/vserver-reference.init b/vserver-reference.init index ae177f4..287e5a2 100755 --- a/vserver-reference.init +++ b/vserver-reference.init @@ -55,9 +55,27 @@ shopt -s nullglob chmod 0000 "$__DEFAULT_VSERVERDIR" setattr --barrier "$__DEFAULT_VSERVERDIR" +# Set the attribute to unlink so vclone does the right thing wrt to +# conserving space by linking and not copying unified files. + +if [ -f /proc/virtual/info ] ; then + x=$[ 16#`awk '/^VCIKernel:/ { print $2 }' /proc/virtual/info` ]; + y=$[ (x >> 9) & 1] + if test "$y" = 1 ; then + # COW support + find "$__DEFAULT_VSERVERDIR/.vref"/* -type f -print0 | xargs -0 setattr --iunlink + else + # no COW; + find "$__DEFAULT_VSERVERDIR/.vref"/* -type f -print0 | xargs -0 setattr --~iunlink + fi +fi + + # Build reference images for system slices -for systemvserver in "$__DEFAULT_VSERVERDIR/.vstub/"*.cloned ; do +# xxx if several instances of systemslices get installed, only one gets instanciated +for systemvserver in "$__DEFAULT_VSERVERDIR/.vstub/"*/*.cloned ; do NAME=$(basename $systemvserver .cloned) + DIR=$(dirname $systemvserver) # Copy base reference image if [ ! -d "$__DEFAULT_VSERVERDIR/.vref/$NAME" ] ; then @@ -71,12 +89,16 @@ for systemvserver in "$__DEFAULT_VSERVERDIR/.vstub/"*.cloned ; do # build the systemvserver from the one it was originally cloned from TYPE=$(cat $systemvserver) REF="$__DEFAULT_VSERVERDIR/.vref/$TYPE" - "$_VCLONE" "$REF"/ "$TMP"/ - RETVAL=$? + if [ -d "$REF" ] ; then + "$_VCLONE" "$REF"/ "$TMP"/ + RETVAL=$? + else + RETVAL=1 + fi # merge the stub with the reference to get the system vserver if [ $RETVAL -eq 0 ] ; then - (cd "$__DEFAULT_VSERVERDIR/.vstub/$NAME"/ && find . | cpio -m -d -u -p "$TMP"/) + (cd "$DIR/$NAME"/ && find . | cpio -m -d -u -p "$TMP"/) RETVAL=$? fi @@ -88,6 +110,7 @@ for systemvserver in "$__DEFAULT_VSERVERDIR/.vstub/"*.cloned ; do mv "$TMP" "$__DEFAULT_VSERVERDIR/.vref/$NAME" success >&3 2>&4 else + rm -rf "$TMP" failure >&3 2>&4 fi echo >&3 2>&4 @@ -99,7 +122,7 @@ echo -n $"Updating VServer reference images: " >&3 2>&4 VROOTS="$__DEFAULT_VSERVERDIR/.vref/* $__DEFAULT_VSERVERDIR/.vcache/* $__DEFAULT_VSERVERDIR/${PLC_SLICE_PREFIX}_*" # Copy configuration files from host to slices -for file in /etc/hosts /etc/resolv.conf /etc/yum.conf /etc/planetlab/node_id \ +for file in /etc/hosts /etc/resolv.conf /etc/planetlab/node_id \ /etc/planetlab/plc_config* /etc/planetlab/php/* \ /etc/pki/rpm-gpg/* ; do if [ -r $file ] ; then