2013-10-31 00:57:44 +04:00
#compdef systemd-run
2017-11-18 20:21:19 +03:00
# SPDX-License-Identifier: LGPL-2.1+
2013-10-31 00:57:44 +04:00
2018-12-24 14:15:38 +03:00
# @todo _systemctl has a helper with the same name, so we must redefine
2013-10-31 00:57:44 +04:00
__systemctl() {
local -a _modes
_modes=("--user" "--system")
systemctl ${words:*_modes} --full --no-legend --no-pager "$@" 2>/dev/null
}
2018-12-24 14:15:38 +03:00
(( $+functions[__systemd-run_get_slices] )) ||
__systemd-run_get_slices () {
2013-10-31 00:57:44 +04:00
__systemctl list-units --all -t slice \
| { while read -r a b; do echo $a; done; };
}
2018-12-24 14:15:38 +03:00
(( $+functions[__systemd-run_slices] )) ||
__systemd-run_slices () {
2013-10-31 00:57:44 +04:00
local -a _slices
2018-12-24 14:15:38 +03:00
_slices=(${(fo)"$(__systemd-run_get_slices)"})
2013-10-31 00:57:44 +04:00
typeset -U _slices
_describe 'slices' _slices
}
_arguments \
{-h,--help}'[Show help message]' \
'--version[Show package version]' \
'--user[Run as user unit]' \
2013-10-31 23:46:29 +04:00
{-H+,--host=}'[Operate on remote host]:[user@]host:_sd_hosts_or_user_at_host' \
2013-11-08 02:00:51 +04:00
{-M+,--machine=}'[Operate on local container]:machines:_sd_machines' \
2013-10-31 00:57:44 +04:00
'--scope[Run this as scope rather than service]' \
'--unit=[Run under the specified unit name]:unit name' \
2015-10-21 16:51:09 +03:00
{-p+,--property=}'[Set unit property]:NAME=VALUE:(( \
CPUAccounting= MemoryAccounting= BlockIOAccounting= SendSIGHUP= \
SendSIGKILL= MemoryLimit= CPUShares= BlockIOWeight= User= Group= \
DevicePolicy= KillMode= DeviceAllow= BlockIOReadBandwidth= \
BlockIOWriteBandwidth= BlockIODeviceWeight= Nice= Environment= \
2018-07-20 18:22:43 +03:00
KillSignal= FinalKillSignal= LimitCPU= LimitFSIZE= LimitDATA= \
LimitSTACK= LimitCORE= LimitRSS= LimitNOFILE= LimitAS= LimitNPROC= \
2015-10-21 16:51:09 +03:00
LimitMEMLOCK= LimitLOCKS= LimitSIGPENDING= LimitMSGQUEUE= \
LimitNICE= LimitRTPRIO= LimitRTTIME= PrivateTmp= PrivateDevices= \
PrivateNetwork= NoNewPrivileges= WorkingDirectory= RootDirectory= \
TTYPath= SyslogIdentifier= SyslogLevelPrefix= SyslogLevel= \
2016-07-07 12:17:00 +03:00
SyslogFacility= TimerSlackNSec= OOMScoreAdjust= ReadWritePaths= \
ReadOnlyPaths= InaccessiblePaths= EnvironmentFile= \
2015-09-07 09:06:53 +03:00
ProtectSystem= ProtectHome= RuntimeDirectory= PassEnvironment= \
2015-10-21 16:51:09 +03:00
))' \
2013-10-31 00:57:44 +04:00
'--description=[Description for unit]:description' \
2018-12-24 14:15:38 +03:00
'--slice=[Run in the specified slice]:slices:__systemd-run_slices' \
2013-10-31 00:57:44 +04:00
{-r,--remain-after-exit}'[Leave service around until explicitly stopped]' \
'--send-sighup[Send SIGHUP when terminating]' \
2015-01-13 00:09:29 +03:00
'--service-type=[Service type]:type:(simple forking oneshot dbus notify idle)' \
'--uid=[Run as system user]:user:_users' \
'--gid=[Run as system group]:group:_groups' \
'--nice=[Nice level]:nice level' \
'--setenv=[Set environment]:NAME=VALUE' \
'--on-active=[Run after SEC seconds]:SEC' \
2016-12-23 16:37:28 +03:00
'--on-boot=[Run SEC seconds after machine was booted up]:SEC' \
'--on-startup=[Run SEC seconds after systemd was first started]:SEC' \
'--on-unit-active=[Run SEC seconds after the last activation]:SEC' \
'--on-unit-inactive=[Run SEC seconds after the last deactivation]:SEC' \
2015-01-13 00:09:29 +03:00
'--on-calendar=[Realtime timer]:SPEC' \
'--timer-property=[Set timer unit property]:NAME=VALUE' \
2016-09-14 23:38:53 +03:00
'--wait=[Wait until service stopped again]' \
2013-10-31 00:57:44 +04:00
'*::command:_command'