You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
659 B
31 lines
659 B
#
|
|
# 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
|