unifios-utilities/on-boot-script
2020-06-21 21:34:07 -04:00
..
examples Update example on_boot.sh for directory 2020-06-21 21:30:34 -04:00
install-unifios.sh Newlines in on-boot-script 2020-06-21 21:28:31 -04:00
install.sh Newlines in on-boot-script 2020-06-21 21:28:31 -04:00
README.md Update README.md examples 2020-06-21 21:34:07 -04:00

UDM / UDMPro Boot Script

Features

  1. Allows you to run a shell script at S95 anytime your UDM starts / reboots

Compatiblity

  1. Should work on any UDM/UDMPro after 1.6.3
  2. Tested and confirmed on 1.6.6, 1.7.0, 1.7.2rc4

Steps

1. Make your script on the UDM/UDMPRO

vi /mnt/data/on_boot.sh 
chmod u+x /mnt/data/on_boot.sh

Example: see examples/udm-files/on_boot.sh, examples/udm-files/on_boot.d/*.sh

2. Make the unifios docker container execute this script on startup, this has to be done after every firmware update. It does persist through reboots.

Automatic

  1. Copy install.sh and install-unifios.sh to your UDM
  2. Execute install.sh

Manual

podman exec -it unifi-os sh

make a script that sshs to the udm and runs on our boot script

Example: examples/unifi-os-files/udm.sh

echo "#!/bin/sh
ssh -o StrictHostKeyChecking=no root@127.0.1.1 '/mnt/data/on_boot.sh'" > /etc/init.d/udm.sh # 127.0.1.1 always points to the UDM

make said script executable

chmod u+x /etc/init.d/udm.sh

make a service that runs on startup, after we have networking

Example: examples/unifi-os-files/udmboot.service

echo "[Unit]
Description=Run On Startup UDM
After=network.target

[Service]
ExecStart=/etc/init.d/udm.sh

[Install]
WantedBy=multi-user.target" > /etc/systemd/system/udmboot.service

enable it and test

systemctl enable udmboot
systemctl start udmboot

back to the udm

exit

reboot your udm/udmpro and make sure it worked

reboot
exit