diff options
author | Daniel Mack <github@zonque.org> | 2015-10-09 08:52:55 +0200 |
---|---|---|
committer | Daniel Mack <github@zonque.org> | 2015-10-09 08:52:55 +0200 |
commit | 3a3f71e5f09073552dd9b0de2058d8894e1bb4f9 (patch) | |
tree | 290a02159c40f115450b0a57387f52899b984e38 /shell-completion | |
parent | 767e2d52d061be503058d8e5dd8ed02d340115dc (diff) | |
parent | f961371fb7a6d1cb5897255cd66608bdc43579cc (diff) |
Merge pull request #1504 from evverx/systemd-run-new-properties
shell-completion: systemd-run: add new properties
Diffstat (limited to 'shell-completion')
-rw-r--r-- | shell-completion/bash/systemd-run | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/shell-completion/bash/systemd-run b/shell-completion/bash/systemd-run index a948677516..be34788ab7 100644 --- a/shell-completion/bash/systemd-run +++ b/shell-completion/bash/systemd-run @@ -81,7 +81,9 @@ _systemd_run() { KillSignal= LimitCPU= LimitFSIZE= LimitDATA= LimitSTACK= LimitCORE= LimitRSS= LimitNOFILE= LimitAS= LimitNPROC= LimitMEMLOCK= LimitLOCKS= LimitSIGPENDING= LimitMSGQUEUE= - LimitNICE= LimitRTPRIO= LimitRTTIME=' + LimitNICE= LimitRTPRIO= LimitRTTIME= PrivateTmp= PrivateDevices= + PrivateNetwork= NoNewPrivileges= WorkingDirectory= RootDirectory= + TTYPath=' COMPREPLY=( $(compgen -W '$comps' -- "$cur") ) return 0 |