24 lines
567 B
Plaintext
24 lines
567 B
Plaintext
#!/sbin/runscript
|
|
# Copyright (c) 2010 Fabio Erculiani <lxnay@sabayon.org>
|
|
# All rights reserved. Released under the 2-clause BSD license.
|
|
|
|
description="Eject LiveCD/DVD at live system shutdown/reboot"
|
|
|
|
depend()
|
|
{
|
|
after *
|
|
}
|
|
|
|
start()
|
|
{
|
|
is_live=$(cat /proc/cmdline | grep cdroot)
|
|
if [ -n "${is_live}" ]; then
|
|
cdrom_dev=$(cat /proc/mounts | grep " /mnt/cdrom " | cut -d" " -f 1)
|
|
# check if /mnt/cdrom device is a cdrom device
|
|
if [ "${cdrom_dev}" = /dev/sr* ] || [ "${cdrom_dev}" = /dev/cdrom* ]; then
|
|
eject -mp "${cdrom_dev}" &> /dev/null
|
|
fi
|
|
fi
|
|
eend 0
|
|
}
|