1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-17 00:07:37 +02:00

remove systemctl list-machines parser

This commit is contained in:
Kelly Brazil
2019-11-15 19:13:53 -08:00
parent c0b8b810a2
commit 89bad7fc2b
5 changed files with 1 additions and 191 deletions

View File

@ -31,7 +31,6 @@ import jc.parsers.ss
import jc.parsers.stat
import jc.parsers.systemctl
import jc.parsers.systemctl_lj
# import jc.parsers.systemctl_lm
import jc.parsers.systemctl_ls
import jc.parsers.systemctl_luf
import jc.parsers.uname
@ -73,7 +72,6 @@ def helptext(message):
--stat stat parser
--systemctl systemctl parser
--systemctl-lj systemctl list-jobs parser
--systemctl-lm systemctl list-machines parser
--systemctl-ls systemctl list-sockets parser
--systemctl-luf systemctl list-unit-files parser
--uname uname -a parser
@ -143,7 +141,6 @@ def main():
'--stat': jc.parsers.stat.parse,
'--systemctl': jc.parsers.systemctl.parse,
'--systemctl-lj': jc.parsers.systemctl_lj.parse,
# '--systemctl-lm': jc.parsers.systemctl_lm.parse,
'--systemctl-ls': jc.parsers.systemctl_ls.parse,
'--systemctl-luf': jc.parsers.systemctl_luf.parse,
'--uname': jc.parsers.uname.parse,