mirror of
https://github.com/zonemaster/zonemaster-gui.git
synced 2026-06-05 18:42:33 +02:00
12 lines
170 B
Bash
Executable file
12 lines
170 B
Bash
Executable file
#!/bin/sh
|
|
|
|
case $1 in
|
|
gui)
|
|
exec /init
|
|
;;
|
|
|
|
*)
|
|
# pass the argument to zonemaster_launch from zonemaster-backend Docker image
|
|
zonemaster_launch $@
|
|
;;
|
|
esac;
|