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.
23 lines
633 B
23 lines
633 B
#!/bin/bash
|
|
|
|
ENABLED=no
|
|
[ "$ENABLED" != "yes" ] && exit 0
|
|
|
|
DEBUGMODE=no
|
|
. /usr/lib/ublinux/functions
|
|
debug_mode "$0" "$@"
|
|
|
|
# free some space if pxe server are not using
|
|
if [ -d /mnt/livemedia/ublinux ] ;then
|
|
rm -f /boot/vmlinuz /boot/ublinux /boot/addon
|
|
if LC_ALL=C chkconfig --list tftp 2>/dev/null | grep -q off ;then
|
|
ln -sf /mnt/livemedia/ublinux/vmlinuz /boot
|
|
ln -sf /mnt/livemedia/ublinux/ublinux /boot
|
|
ln -sf /mnt/livemedia/ublinux/addon /boot
|
|
else
|
|
cp -pf /mnt/livemedia/ublinux/vmlinuz /boot
|
|
cp -pf /mnt/livemedia/ublinux/ublinux /boot
|
|
cp -pf /mnt/livemedia/ublinux/addon /boot
|
|
fi
|
|
fi
|