mirror of
https://gitlab.com/hacklab01/pivilion.git
synced 2026-08-06 16:08:22 +00:00
7 lines
233 B
Bash
Executable file
7 lines
233 B
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
source /usr/local/lib/pivilion/common.sh
|
|
[ "$(id -u)" -eq 0 ] || exec sudo "$0" "$@"
|
|
pivilion_load_config
|
|
pivilion_set_mode hotspot
|
|
echo "Pivilion will start in open hotspot mode after the next reboot."
|