initial import

This commit is contained in:
2021-11-14 16:55:15 +01:00
commit b16534c045
6 changed files with 112 additions and 0 deletions

0
files/motd Normal file
View File

1
files/syslog.conf Normal file
View File

@ -0,0 +1 @@
SYSLOGD_OPTS="-R 10.3.0.1"

11
files/update.sh Normal file
View File

@ -0,0 +1,11 @@
#!/bin/ash
APK=$(which apk)
UPDATE=$($APK -qU upgrade)
if [ "x$UPDATE" != "x" ];
then
echo -e "$HOSTNAME updated packages:\n"
echo -e "$UPDATE\n"
reboot
fi