Your IP : 216.73.216.48
| Current Path : /var/log/scripts/ |
|
|
| Current File : //var/log/scripts/lxc-2.0.1-x86_64-4 |
config() {
NEW="$1"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
if [ ! -r $OLD ]; then
mv $NEW $OLD
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
rm $NEW
fi
}
preserve_perms() {
NEW="$1"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
if [ -e $OLD ]; then
cp -a $OLD ${NEW}.incoming
cat $NEW > ${NEW}.incoming
mv ${NEW}.incoming $NEW
fi
config $NEW
}
preserve_perms etc/rc.d/rc.lxc.new
config etc/lxc/default.conf.new
config etc/default/lxc.new
( cd usr/lib64 ; rm -rf liblxc.so )
( cd usr/lib64 ; ln -sf liblxc.so.1 liblxc.so )
( cd usr/lib64 ; rm -rf liblxc.so.1 )
( cd usr/lib64 ; ln -sf liblxc.so.1.2.0 liblxc.so.1 )