cc49806e08
Script to enable setup mode and reboot Fixes #2412
9 lines
161 B
Bash
Executable File
9 lines
161 B
Bash
Executable File
#!/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
|