dk: stop, logs et down acceptent maintenant un argument
This commit is contained in:
parent
df788f6159
commit
7a728a9d34
24
dk
24
dk
|
@ -528,8 +528,12 @@ while [ $# -gt 0 ]; do
|
||||||
auto_service "${args[@]}" || die
|
auto_service "${args[@]}" || die
|
||||||
;;
|
;;
|
||||||
k|stop)
|
k|stop)
|
||||||
|
args=()
|
||||||
|
while [ $# -gt 0 -a "$1" != -- ]; do
|
||||||
|
args+=("$1"); shift
|
||||||
|
done
|
||||||
enote "Profil $PROFILE"
|
enote "Profil $PROFILE"
|
||||||
auto_stop || die
|
auto_stop "${args[@]}" || die
|
||||||
;;
|
;;
|
||||||
1|up)
|
1|up)
|
||||||
args=()
|
args=()
|
||||||
|
@ -539,8 +543,22 @@ while [ $# -gt 0 ]; do
|
||||||
enote "Profil $PROFILE"
|
enote "Profil $PROFILE"
|
||||||
auto_up "${args[@]}" && auto_logs || die
|
auto_up "${args[@]}" && auto_logs || die
|
||||||
;;
|
;;
|
||||||
l|logs) auto_logs || die;;
|
l|logs)
|
||||||
0|down) auto_down || die;;
|
args=()
|
||||||
|
while [ $# -gt 0 -a "$1" != -- ]; do
|
||||||
|
args+=("$1"); shift
|
||||||
|
done
|
||||||
|
enote "Profil $PROFILE"
|
||||||
|
auto_logs "${args[@]}" || die
|
||||||
|
;;
|
||||||
|
0|down)
|
||||||
|
args=()
|
||||||
|
while [ $# -gt 0 -a "$1" != -- ]; do
|
||||||
|
args+=("$1"); shift
|
||||||
|
done
|
||||||
|
enote "Profil $PROFILE"
|
||||||
|
auto_down "${args[@]}" || die
|
||||||
|
;;
|
||||||
d|brd)
|
d|brd)
|
||||||
do_auto_down=1
|
do_auto_down=1
|
||||||
function auto_down_trap() {
|
function auto_down_trap() {
|
||||||
|
|
Loading…
Reference in New Issue