| version 1.48, 2013/01/26 18:13:03 |
version 1.52, 2013/10/20 01:26:35 |
|
|
| #!/bin/sh |
#!/bin/sh |
| # $AFresh1: update_openbsd,v 1.47 2012/12/16 06:56:15 andrew Exp $ |
# $AFresh1: update_openbsd,v 1.51 2013/10/20 00:23:05 andrew Exp $ |
| # |
# |
| # Copyright (c) 2012 Andrew Fresh <andrew@afresh1.com> |
# Copyright (c) 2012 Andrew Fresh <andrew@afresh1.com> |
| # |
# |
|
|
| |
|
| local _v=$FILE_VER |
local _v=$FILE_VER |
| |
|
| if [ $CUR_VER != $NEW_VER -a ! -e /sbin/oreboot ]; then |
|
| $SUDO cp /sbin/reboot /sbin/oreboot |
|
| if [ $? -ne 0 ]; then |
|
| echo "Error copying old reboot command!" >&2 |
|
| exit 1 |
|
| fi |
|
| echo "/sbin/reboot copied to /sbin/oreboot" |
|
| fi |
|
| |
|
| local _sets=`ls *${_v}.tgz | grep -v ^base ` |
local _sets=`ls *${_v}.tgz | grep -v ^base ` |
| for _f in ${_sets} base${_v}.tgz; do |
for _f in ${_sets} base${_v}.tgz; do |
| _path=$DESTDIR |
_path=$DESTDIR |
|
|
| done |
done |
| |
|
| echo Extracted all sets. |
echo Extracted all sets. |
| |
} |
| |
|
| |
install_sendmail_smtp_auth() { |
| if [ -e ${RELEASEDIR}/sendmail-smtp_auth.gz ]; then |
if [ -e ${RELEASEDIR}/sendmail-smtp_auth.gz ]; then |
| gzcat ${RELEASEDIR}/sendmail-smtp_auth.gz > \ |
gzcat ${RELEASEDIR}/sendmail-smtp_auth.gz > \ |
| ${RELEASEDIR}/sendmail-smtp_auth |
${RELEASEDIR}/sendmail-smtp_auth |
|
|
| $SUDO -v -p "sudo Password: " |
$SUDO -v -p "sudo Password: " |
| fi |
fi |
| |
|
| |
if [ X"$BOOT_KERNEL_VERSION" != X"$BOOTED_KERNEL_VERSION" \ |
| |
-a ! -e /sbin/oreboot ]; then |
| |
$SUDO cp /sbin/reboot /sbin/oreboot |
| |
if [ $? -ne 0 ]; then |
| |
echo "Error copying old reboot command!" >&2 |
| |
exit 1 |
| |
fi |
| |
echo "/sbin/reboot copied to /sbin/oreboot" |
| |
fi |
| |
|
| install_kernels |
install_kernels |
| install_sets |
install_sets |
| |
|
| if [ $CUR_VER == $NEW_VER ]; then |
if [ X"$BOOT_KERNEL_VERSION" == X"$BOOTED_KERNEL_VERSION" ]; then |
| |
install_sendmail_smtp_auth |
| |
|
| if [ -e /sbin/oreboot ]; then |
if [ -e /sbin/oreboot ]; then |
| echo Removing /sbin/oreboot |
echo Removing /sbin/oreboot |
| $SUDO rm -f /sbin/oreboot |
$SUDO rm -f /sbin/oreboot |
|
|
| echo New kernel installed. Please reboot! |
echo New kernel installed. Please reboot! |
| if [ -e /sbin/oreboot ]; then |
if [ -e /sbin/oreboot ]; then |
| echo Possibly using /sbin/oreboot |
echo Possibly using /sbin/oreboot |
| fi |
|
| |
|
| local _send_dmesg=`dirname $0`/send_dmesg |
|
| if [ -e "$_send_dmesg" ]; then |
|
| if [ -e $RELEASEDIR/.send_dmesg ]; then |
|
| $_send_dmesg |
|
| rm -f $RELEASEDIR/.send_dmesg |
|
| elif [ X"$CUR_VER" != X"$NEW_VER" ]; then |
|
| touch $RELEASEDIR/.send_dmesg |
|
| fi |
|
| fi |
fi |