9 lines
265 B
Bash
9 lines
265 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
multica setup self-host "$@"
|
|
|
|
# setup starts a detached daemon. Supervisor will immediately replace it with
|
|
# the foreground process used for container lifecycle and clean shutdown.
|
|
multica daemon stop >/dev/null 2>&1 || true
|