From 9dce4bd9c558722d9ff226de22485546ab27e16d Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 14 Aug 2012 17:22:04 -0400 Subject: [PATCH] Provide start/stop/status aliases as a convenience for Upstart users --- modules/programs/bash/bashrc.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/programs/bash/bashrc.sh b/modules/programs/bash/bashrc.sh index 79583a73174..94680bce890 100644 --- a/modules/programs/bash/bashrc.sh +++ b/modules/programs/bash/bashrc.sh @@ -46,3 +46,6 @@ alias ls="ls --color=tty" alias ll="ls -l" alias l="ls -alh" alias which="type -P" +alias start="systemctl start" +alias stop="systemctl stop" +alias status="systemctl status"