From: Yu Watanabe Date: Mon, 11 Mar 2019 04:26:29 +0000 (+0900) Subject: bash-completion: also suggest units in reloading or activating X-Git-Tag: v242-rc1~161 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ca66b69d5bdc9d3bf34cdc53bb600f88ef6a2c87;p=thirdparty%2Fsystemd.git bash-completion: also suggest units in reloading or activating Closes #11942. --- diff --git a/shell-completion/bash/systemctl.in b/shell-completion/bash/systemctl.in index 0e58e2ba4cb..d73f956a3f4 100644 --- a/shell-completion/bash/systemctl.in +++ b/shell-completion/bash/systemctl.in @@ -84,10 +84,13 @@ __get_restartable_units () { __get_stoppable_units () { # filter out masked and not-found - __filter_units_by_properties $1 ActiveState=active,CanStop=yes $( + local units=$( { __get_not_masked_unit_files $1 $2 __get_active_units $1 $2 } | sort -u ) + __filter_units_by_properties $1 ActiveState=active,CanStop=yes $units + __filter_units_by_properties $1 ActiveState=reloading,CanStop=yes $units + __filter_units_by_properties $1 ActiveState=activating,CanStop=yes $units } __get_reloadable_units () {