1
0
Fork 0

Added systemd plugin with aliases for systemctl commands.

pull/333/head
Augusto Rocha Elesbão 12 years ago
parent 13b501adaf
commit 38624c6c49

@ -0,0 +1,30 @@
#
# Defines systemctl aliases.
#
# Authors:
# Augusto Rocha Elesbão <aelesbao@gmail.com>
#
# Return if requirements are not found.
if (( ! $+commands[systemctl] )); then
return 1
fi
user_commands=(
list-units is-active status show help list-unit-files
is-enabled list-jobs show-environment
)
for c in $user_commands; do; alias sc-$c="systemctl $c"; done
unset user_commands
sudo_commands=(
start stop reload restart try-restart isolate kill
reset-failed enable disable reenable preset mask unmask
link load cancel set-environment unset-environment
)
for c in $sudo_commands; do; alias sc-$c="sudo systemctl $c"; done
unset sudo_commands
Loading…
Cancel
Save