14983861c0
This will allow the box code to respond properly to the retire request
9 lines
190 B
Bash
Executable File
9 lines
190 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu -o pipefail
|
|
|
|
echo "Stopping cloudron"
|
|
|
|
# we do not wait until all services stop, so we can still respond to the retire request
|
|
systemctl stop --no-block cloudron.target
|