1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-03 00:07:05 +00:00

add a restart command

This commit is contained in:
downtownallday 2024-09-05 12:39:52 -04:00
parent 54a3bd100c
commit 6d25bc47bf

View File

@ -222,6 +222,12 @@ vlx_status() {
fi
}
vlx_restart() {
vlx_guess "$@" || return 1
echo lxc --project "$LX_PROJECT" restart "$LX_INST"
lxc --project "$LX_PROJECT" restart "$LX_INST"
}
usage() {
echo "Usage:"
@ -238,6 +244,7 @@ usage() {
echo " start"
echo " stop"
echo " delete|destroy"
echo " restart"
echo " status"
}
@ -255,4 +262,3 @@ if [ ! "$(type -t $handler)" = "function" ]; then
fi
$handler "$@"