You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
898 B
Bash
31 lines
898 B
Bash
#!/bin/sh
|
|
# try to ensure sysupdates are running regularily before doing anoything else
|
|
xbps-install -y snooze
|
|
ln -sfT /etc/sv/snooze-hourly /var/service/snooze-hourly
|
|
mkdir -p /etc/cron.hourly
|
|
if [ ! -f /etc/cron.hourly/sysupdate ]; then
|
|
# may have been previously installed at daily schedule
|
|
if [ -f /etc/cron.daily/sysupdate ]; then
|
|
mv /etc/cron.daily/sysupdate /etc/cron.hourly/
|
|
else
|
|
# run updates approx. every hour
|
|
cat <<EOF > /etc/cron.hourly/sysupdate
|
|
#!/bin/sh
|
|
exec /ssd/sysupdates/update.sh
|
|
EOF
|
|
fi
|
|
fi
|
|
chmod +x /etc/cron.hourly/sysupdate
|
|
|
|
# install required packages and config files
|
|
set -e
|
|
xbps-install -y opendoas tar gzip curl diffutils
|
|
|
|
# openbsd's doas util config, a minial replacement of sudo
|
|
if [ ! -f /etc/doas.conf ]; then
|
|
cat <<EOF > /etc/doas.conf
|
|
permit nopass root
|
|
permit setenv { -ENV PS1=\$DOAS_PS1 SSH_AUTH_SOCK } :wheel
|
|
EOF
|
|
fi
|