aboutsummaryrefslogtreecommitdiff
path: root/src/conf/py-debug/conf.d/core.jsonc
diff options
context:
space:
mode:
authorDavid Timber <dxdt@dev.snart.me>2022-04-27 17:40:41 +0800
committerDavid Timber <dxdt@dev.snart.me>2022-04-27 17:40:41 +0800
commita01c87416b241315a9268bb4eb5206ade8328069 (patch)
tree2aff1601c93d20c88ec505b8bc183b9fcbb847dd /src/conf/py-debug/conf.d/core.jsonc
Initial commit
Diffstat (limited to 'src/conf/py-debug/conf.d/core.jsonc')
-rw-r--r--src/conf/py-debug/conf.d/core.jsonc44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/conf/py-debug/conf.d/core.jsonc b/src/conf/py-debug/conf.d/core.jsonc
new file mode 100644
index 0000000..4afe7f5
--- /dev/null
+++ b/src/conf/py-debug/conf.d/core.jsonc
@@ -0,0 +1,44 @@
+// PALHM Core Config
+{
+ "execs": [
+ // {
+ // "id": "Exec ID",
+ // "argv": [ "cmd", "--option1=opt1_val", "-o", "opt2_val" ],
+ // "env": { "NAME": "VAL" },
+ // "ec": "0", // this is assumed
+ // "ec": "0-127", // inclusive range (not terminated by a signal)
+ // "ec": "<1", // range (only 0)
+ // "ec": "<=1", // range (0 and 1)
+ // "ec": ">0", // range (always fail)
+ // "ec": ">=0", // range (only 0)
+ // "vl-stderr": 1 // verbosity level of stderr produced by this process
+ // verbosity level of stderr produced by this process. Ignored if used
+ // as part of pipeline
+ // "vl-stdout": 2
+ // },
+ {
+ "id": "tar",
+ "argv": [ "/usr/bin/tar", "--xattrs", "--selinux" ]
+ },
+ {
+ "id": "filter-xz-parallel",
+ "argv": [ "/usr/bin/xz", "-T0" ]
+ },
+ {
+ "id": "filter-gzip-plain",
+ "argv": [ "/usr/bin/gzip" ]
+ },
+ {
+ "id": "filter-zstd-plain",
+ "argv": [ "/usr/bin/zstd" ]
+ },
+ {
+ "id": "dnf-list-installed",
+ "argv": [ "/usr/bin/dnf", "-yq", "list", "installed" ]
+ },
+ {
+ "id": "lsblk-all-json",
+ "argv": [ "/usr/bin/lsblk", "-JbOa" ]
+ }
+ ]
+}