summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorAndreas Maunz <andreas@maunz.de>2011-05-03 17:01:09 +0200
committerAndreas Maunz <andreas@maunz.de>2011-05-03 17:01:09 +0200
commit9eff6bcba2ffb30fa6acda136af654498c422d01 (patch)
treee1f1de911eb304af7c045f3e61ed487982750088 /README
parentcbdcb44f572b96f49323879202573e194c868069 (diff)
Fixed otkill
Diffstat (limited to 'README')
-rw-r--r--README5
1 files changed, 4 insertions, 1 deletions
diff --git a/README b/README
index 97becf2..9da8acb 100644
--- a/README
+++ b/README
@@ -46,7 +46,10 @@ otstart() {
alias otreload='sudo env PATH=$PATH nginx -s reload'
# Kill the server
-alias otkill='sudo killall nginx redis-server'
+otkill() {
+ killall nginx
+ redis-cli shutdown
+}
# Display log
alias otless='less /home/am/.opentox/log/production.log'