aboutsummaryrefslogtreecommitdiff
path: root/src/palhm/conf/py-sample/conf.d
diff options
context:
space:
mode:
authorDavid Timber <dxdt@dev.snart.me>2025-04-14 19:23:34 +0200
committerDavid Timber <dxdt@dev.snart.me>2025-04-14 19:23:34 +0200
commit57e1787cd25a425eb1c425dff58387f5da76037d (patch)
tree821a8c0b5e91ac0af01d12a6c0b61f04e58a7802 /src/palhm/conf/py-sample/conf.d
parent7a4e937f35c1510b33353aad6878c74fb721f554 (diff)
Some tree changes ...
- Move src/conf into src/palhm - Delete .vscode/settings.json
Diffstat (limited to 'src/palhm/conf/py-sample/conf.d')
-rw-r--r--src/palhm/conf/py-sample/conf.d/core.json85
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" ]
+ }
+ ]
+}