We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
-p/--property
systemctl show allows multiple properties to be printed. This is a feature used by chef to detect unit state...
systemctl show
Running on a real systemd installation:
# systemctl show -p Type -p Restart haproxy.service Type=notify Restart=always # systemctl --version systemd 237 +PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid
Running with the replacement python script. Notice the missing Type property:
Type
# systemctl show -p Type -p Restart haproxy.service Restart=always # systemctl version systemd 219 - via systemctl.py 1.5.7417 -PAM -AUDIT -SELINUX -IMA -APPARMOR -SMACK +SYSVINIT -UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS -ACL -XZ -LZ4 -SECCOMP -BLKID -ELFUTILS -KMOD -IDN
The text was updated successfully, but these errors were encountered:
make --type --property --state --what being commalist #174
d191df3
That allows for a generalization (develop branch)
Sorry, something went wrong.
No branches or pull requests
systemctl show
allows multiple properties to be printed. This is a feature used by chef to detect unit state...Running on a real systemd installation:
Running with the replacement python script. Notice the missing
Type
property:The text was updated successfully, but these errors were encountered: