You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh |
|
if [ -b /dev/mapper/live-rw ]; then |
|
if [ -d /updates ]; then |
|
echo "Applying updates to live image..." |
|
cd /updates |
|
/bin/cp -a -t $NEWROOT . |
|
cd - |
|
fi |
|
fi
|
|
|