From 6fe47dab82c3e3c9c747cf094348a902e7e52c7b Mon Sep 17 00:00:00 2001 From: Javier Tia Date: Wed, 18 Mar 2015 18:00:48 -0600 Subject: [PATCH] Add sc-daemon-reload alias for systemd --- plugins/systemd/systemd.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/systemd/systemd.plugin.zsh b/plugins/systemd/systemd.plugin.zsh index 7d3db0f8e..c49b89a36 100644 --- a/plugins/systemd/systemd.plugin.zsh +++ b/plugins/systemd/systemd.plugin.zsh @@ -5,7 +5,7 @@ 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) + link load cancel set-environment unset-environment daemon-reload) for c in $user_commands; do; alias sc-$c="systemctl $c"; done for c in $sudo_commands; do; alias sc-$c="sudo systemctl $c"; done