aboutsummaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/.bashrc b/.bashrc
index 7a74133..e3ec67b 100644
--- a/.bashrc
+++ b/.bashrc
@@ -103,7 +103,7 @@ alias lxc-ls='lxc-ls -f'
lxc-copy() { $(which lxc-copy) -n "$1" -N "$2"; }
lxc-restart() { $(which lxc-stop) -n "$1"; $(which lxc-start) -n "$1"; }
lxc-start() { for container in "$@"; do $(which lxc-start) -n "$container"; done }
-lxc-stop() { for container in "$@"; do $(which lxc-stop) -n "$container"; done }
+lxc-stop() { for container in "$@"; do $(which lxc-stop) -kn "$container"; done }
# docker aliases
alias pdf2htmlEX='docker run -ti --rm -v "$PWD":/pdf bwits/pdf2htmlex:1.0 pdf2htmlEX'