Add a ‘restart’ alias

This commit is contained in:
Eelco Dolstra 2012-10-11 16:18:34 -04:00
parent 1c53b2e299
commit 2cf9bb929b

View File

@ -42,6 +42,9 @@ alias ls="ls --color=tty"
alias ll="ls -l"
alias l="ls -alh"
alias which="type -P"
# Convenience for people used to Upstart.
alias start="systemctl start"
alias stop="systemctl stop"
alias restart="systemctl restart"
alias status="systemctl status"