mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-22 13:33:56 +03:00
shell-completion: systemctl: do not list template units in {re,}start
Template units lacking DefaultInstance cannot be enabled/disabled or started/restarted. By adding DefaultInstance the unit can be enabled/disabled but it still cannot be started/restarted. Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
This commit is contained in:
parent
98476dc8b2
commit
9b536b1af2
@ -235,13 +235,11 @@ _systemctl () {
|
||||
compopt -o filenames
|
||||
|
||||
elif __contains_word "$verb" ${VERBS[STARTABLE_UNITS]}; then
|
||||
comps=$( __get_startable_units $mode "$cur";
|
||||
__get_template_names $mode "$cur")
|
||||
comps=$( __get_startable_units $mode "$cur" )
|
||||
compopt -o filenames
|
||||
|
||||
elif __contains_word "$verb" ${VERBS[RESTARTABLE_UNITS]}; then
|
||||
comps=$( __get_restartable_units $mode "$cur";
|
||||
__get_template_names $mode "$cur")
|
||||
comps=$( __get_restartable_units $mode "$cur" )
|
||||
compopt -o filenames
|
||||
|
||||
elif __contains_word "$verb" ${VERBS[STOPPABLE_UNITS]}; then
|
||||
|
@ -206,7 +206,7 @@ done
|
||||
{
|
||||
local _sys_startable_units; _systemctl_startable_units
|
||||
_wanted systemd-units expl 'startable unit' \
|
||||
compadd "$@" - ${_sys_startable_units[*]} $(_systemctl_get_template_names)
|
||||
compadd "$@" - ${_sys_startable_units[*]}
|
||||
}
|
||||
|
||||
# Completion functions for STOPPABLE_UNITS
|
||||
@ -246,7 +246,7 @@ for fun in restart reload-or-restart ; do
|
||||
{
|
||||
local _sys_restartable_units; _systemctl_restartable_units
|
||||
_wanted systemd-units expl 'restartable unit' \
|
||||
compadd "$@" - ${_sys_restartable_units[*]} $(_systemctl_get_template_names)
|
||||
compadd "$@" - ${_sys_restartable_units[*]}
|
||||
}
|
||||
done
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user