Lines Matching refs:systemctl
7 systemctl show-environment | grep -q '^PATH='
10 systemctl set-environment PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/testaddition FOO=…
13 systemctl show-environment | grep -q '^PATH=.*testaddition$'
14 systemctl show-environment | grep -q '^FOO=BAR$'
16 systemctl daemon-reload
19 systemctl show-environment | grep -q '^PATH=.*testaddition$'
20 systemctl show-environment | grep -q '^FOO=BAR$'
23 systemctl show-environment --output=json | grep -q '^{.*"FOO":"BAR".*}$'
26 systemctl unset-environment FOO PATH
29 systemctl show-environment | grep '^FOO=$' && exit 1
30 systemctl show-environment | grep '^PATH=.*testaddition$' && exit 1
31 systemctl show-environment | grep -q '^PATH='