diff options
Diffstat (limited to 'src/palhm/conf/py-sample/conf.d')
-rw-r--r-- | src/palhm/conf/py-sample/conf.d/core.json | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/src/palhm/conf/py-sample/conf.d/core.json b/src/palhm/conf/py-sample/conf.d/core.json new file mode 100644 index 0000000..fac28a0 --- /dev/null +++ b/src/palhm/conf/py-sample/conf.d/core.json @@ -0,0 +1,85 @@ +{ + "execs": [ + { + "id": "tar", + "argv": [ + "/bin/tar", + "--xattrs", + "--selinux", + "--warning=none", + "-cf", + "-" + ], + "ec": "<2" + }, + { + "id": "filter-xz-parallel", + "argv": [ "/bin/xz", "-T0" ] + }, + { + "id": "filter-gzip-plain", + "argv": [ "/bin/gzip" ] + }, + { + "id": "filter-zstd-plain", + "argv": [ "/bin/zstd" ] + }, + { + "id": "filter-zstd-parallel", + "argv": [ "/bin/zstd", "-T0" ] + }, + { + "id": "rpm-list-installed", + "argv": [ + "/bin/rpm", + "-qa", + "--qf", + "%{name}\\t%{version}-%{release}.%{arch}\\t%{vendor}\\n" + ] + }, + { + "id": "dnf-list-userinstalled", + "argv": [ + "/bin/dnf", + "history", + "userinstalled" + ] + }, + { + "id": "dnf-group-list-installed", + "argv": [ + "/bin/dnf", + "--cacheonly", + "-q", + "group", + "list", + "--installed" + ], + "ec": " >= 0" + }, + { + "id": "dpkg-list-installed", + "argv": [ "/bin/dpkg-query", "-l" ] + }, + { + "id": "lsblk-all-json", + "argv": [ "/bin/lsblk", "-JbOa" ] + }, + { + "id": "os-release", + "argv": [ "/bin/cat", "/etc/os-release" ] + }, + { + "id": "dig-dnssec", + "argv": [ "/bin/dig", "+short", "+dnssec", "+notcp" ] + }, + { + "id": "grep-any", + "argv": [ "/bin/grep", "." ] + }, + { + "id": "null-stdout-sink", + "argv": [ "/bin/cp", "/dev/stdin", "/dev/null" ] + } + ] +} |