mirror of
https://github.com/home-assistant/operating-system.git
synced 2026-04-28 20:53:59 +01:00
10 lines
368 B
Bash
10 lines
368 B
Bash
#!/bin/sh
|
|
|
|
global bootchooser.targets
|
|
global bootchooser.system0.boot
|
|
global bootchooser.system1.boot
|
|
|
|
[ -z "${global.bootchooser.targets}" ] && global.bootchooser.targets="system0 system1"
|
|
[ -z "${global.bootchooser.system0.boot}" ] && global.bootchooser.system0.boot="system0"
|
|
[ -z "${global.bootchooser.system1.boot}" ] && global.bootchooser.system1.boot="system1"
|