Fix bkctld restart all

This commit is contained in:
Victor LABORIE 2017-01-12 11:32:02 +01:00
parent a1942c486f
commit 61481e81fb

6
bkctld
View file

@ -547,6 +547,12 @@ main() {
log $subcommand $jail
fi
;;
"restart")
if ( check_jail_on $jail ); then
log stop $jail
fi
log start $jail
;;
*)
log $subcommand $jail
;;