Compare commits
No commits in common. "4b6d94a1e59b75c8623a0eaea49cc7ff26c8b820" and "3c14dc61f7782d8eca0ff7b55e9f60fef176fe82" have entirely different histories.
4b6d94a1e5
...
3c14dc61f7
|
@ -221,11 +221,7 @@ __systemctl()
|
||||||
_systemctl_failed_units() {_sys_failed_units=( ${${(f)"$(__systemctl list-units --state=failed "$PREFIX*" )"}%% *} ) }
|
_systemctl_failed_units() {_sys_failed_units=( ${${(f)"$(__systemctl list-units --state=failed "$PREFIX*" )"}%% *} ) }
|
||||||
|
|
||||||
(( $+functions[_systemctl_unit_state] )) ||
|
(( $+functions[_systemctl_unit_state] )) ||
|
||||||
_systemctl_unit_state() {
|
_systemctl_unit_state() { typeset -gA _sys_unit_state; _sys_unit_state=( $(__systemctl list-unit-files "$PREFIX*" ) ) }
|
||||||
setopt localoptions extendedglob
|
|
||||||
typeset -gA _sys_unit_state
|
|
||||||
_sys_unit_state=( ${=${${(f)"$(__systemctl list-unit-files "$PREFIX*" )"}%%[[:space:]]#}% *} )
|
|
||||||
}
|
|
||||||
|
|
||||||
local fun
|
local fun
|
||||||
# Completion functions for ALL_UNITS
|
# Completion functions for ALL_UNITS
|
||||||
|
|
|
@ -27,16 +27,6 @@
|
||||||
_describe -t state 'state' _states || compadd "$@"
|
_describe -t state 'state' _states || compadd "$@"
|
||||||
}
|
}
|
||||||
|
|
||||||
(( $+functions[_systemd-analyze_cat-config] )) ||
|
|
||||||
_systemd-analyze_cat-config() {
|
|
||||||
_files -W '(/run/systemd/ /etc/systemd/ /usr/lib/systemd/)' -P 'systemd/'
|
|
||||||
}
|
|
||||||
|
|
||||||
(( $+functions[_systemd-analyze_security] )) ||
|
|
||||||
_systemd-analyze_security() {
|
|
||||||
_sd_unit_files
|
|
||||||
}
|
|
||||||
|
|
||||||
(( $+functions[_systemd-analyze_commands] )) ||
|
(( $+functions[_systemd-analyze_commands] )) ||
|
||||||
_systemd-analyze_commands(){
|
_systemd-analyze_commands(){
|
||||||
local -a _systemd_analyze_cmds
|
local -a _systemd_analyze_cmds
|
||||||
|
@ -48,20 +38,13 @@
|
||||||
'plot:Output SVG graphic showing service initialization'
|
'plot:Output SVG graphic showing service initialization'
|
||||||
'dot:Dump dependency graph (in dot(1) format)'
|
'dot:Dump dependency graph (in dot(1) format)'
|
||||||
'dump:Dump server status'
|
'dump:Dump server status'
|
||||||
'cat-config:Cat systemd config files'
|
|
||||||
'unit-files:List files and symlinks for units'
|
|
||||||
'unit-paths:List unit load paths'
|
'unit-paths:List unit load paths'
|
||||||
'exit-status:List known exit statuses'
|
'log-level:Get/set systemd log threshold'
|
||||||
|
'log-target:Get/set systemd log target'
|
||||||
|
'service-watchdogs:Get/set service watchdog status'
|
||||||
'syscall-filter:List syscalls in seccomp filter'
|
'syscall-filter:List syscalls in seccomp filter'
|
||||||
'condition:Evaluate Condition*= and Assert*= assignments'
|
|
||||||
'verify:Check unit files for correctness'
|
'verify:Check unit files for correctness'
|
||||||
'calendar:Validate repetitive calendar time events'
|
'calendar:Validate repetitive calendar time events'
|
||||||
'timestamp:Parse a systemd syntax timestamp'
|
|
||||||
'timespan:Parse a systemd syntax timespan'
|
|
||||||
'security:Analyze security settings of a service'
|
|
||||||
# 'log-level:Get/set systemd log threshold'
|
|
||||||
# 'log-target:Get/set systemd log target'
|
|
||||||
# 'service-watchdogs:Get/set service watchdog status'
|
|
||||||
)
|
)
|
||||||
|
|
||||||
if (( CURRENT == 1 )); then
|
if (( CURRENT == 1 )); then
|
||||||
|
|
Loading…
Reference in New Issue