9 lines
161 B
Plaintext
9 lines
161 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
set -euo pipefail
|
||
|
|
||
|
echo "Entering setup mode and rebooting..."
|
||
|
uci set gluon-setup-mode.@setup_mode[0].enabled='1'
|
||
|
uci commit gluon-setup-mode
|
||
|
reboot
|