diff options
author | David Timber <dxdt@dev.snart.me> | 2025-04-14 19:23:34 +0200 |
---|---|---|
committer | David Timber <dxdt@dev.snart.me> | 2025-04-14 19:23:34 +0200 |
commit | 57e1787cd25a425eb1c425dff58387f5da76037d (patch) | |
tree | 821a8c0b5e91ac0af01d12a6c0b61f04e58a7802 /src/conf/py-debug/null.jsonc | |
parent | 7a4e937f35c1510b33353aad6878c74fb721f554 (diff) |
Some tree changes ...
- Move src/conf into src/palhm
- Delete .vscode/settings.json
Diffstat (limited to 'src/conf/py-debug/null.jsonc')
-rw-r--r-- | src/conf/py-debug/null.jsonc | 141 |
1 files changed, 0 insertions, 141 deletions
diff --git a/src/conf/py-debug/null.jsonc b/src/conf/py-debug/null.jsonc deleted file mode 100644 index b5ce9f8..0000000 --- a/src/conf/py-debug/null.jsonc +++ /dev/null @@ -1,141 +0,0 @@ -{ - "include": [ "conf.d/core.json" ], - "nb-workers": 0, // assumed $(nproc) - // "nb-workers": 1, // to disable concurrent task despatch - // "nb-workers": -1, // to unlimit the number of workers. - "vl": 3, - "tasks": [ - { - "id": "backup", - "type": "backup", - "backend": "null", - "object-groups": [ - { "id": "pre-start" }, - { - "id": "data-dump", - "depends": [ "pre-start" ] - }, - { - "id": "tar-0", - "depends": [ "data-dump" ] - }, - { - "id": "tar-1", - "depends": [ "data-dump" ] - } - ], - "objects": [ - { - "path": "pm-list.zstd", - "group": "pre-start", - "pipeline": [ - { "type": "exec", "exec-id": "rpm-list-installed" }, - { "type": "exec", "exec-id": "filter-zstd-plain" } - ] - }, - { - "path": "lsblk.json.zstd", - "group": "pre-start", - "pipeline": [ - { "type": "exec", "exec-id": "lsblk-all-json" }, - { "type": "exec", "exec-id": "filter-zstd-plain" } - ] - }, - { - "path": "db.sql.zstd", - "group": "data-dump", - "pipeline": [ - { - "type": "exec-inline", - "argv": [ - "/bin/mysqldump", - "-uroot", - "--all-databases" - ] - }, - { "type": "exec", "exec-id": "filter-zstd-parallel" } - ] - }, - { - "path": "root.tar.zstd", - "group": "tar-0", - "pipeline": [ - { - "type": "exec-append", - "exec-id": "tar", - "argv": [ - "-C", - "/", - "/etc", - "/home", - "/root", - "/var" - ] - }, - { "type": "exec", "exec-id": "filter-zstd-parallel" } - ] - }, - { - "path": "srv.tar.zstd", - "group": "tar-1", - "pipeline": [ - { - "type": "exec-append", - "exec-id": "tar", - "argv": [ - "-C", - "/", - "/srv" - ] - }, - { "type": "exec", "exec-id": "filter-zstd-parallel" } - ] - } - ] - }, - { - "id": "update", - "type": "routine", - "routine": [ - { - "type": "exec-inline", - "argv": [ "/bin/dnf", "--refresh", "-yq", "update" ] - }, - { - "type": "exec-inline", - "argv": [ "/bin/sa-update" ] - } - ] - }, - { - "id": "reboot", - "type": "routine", - "routine": [ - { -/* - * Block SIGTERM from systemd/init.d so PALHM can exit gracefully after issuing - * reboot. - */ - "type": "builtin", - "builtin-id": "sigmask", - "param": [ - { "action": "block", "sig": [ "TERM" ] } - ] - }, - { - "type": "exec-inline", - "argv": [ "/sbin/reboot" ] - } - ] - }, - { - "id": "default", - "type": "routine", - "routine": [ - { "type": "task", "task-id": "backup" }, - { "type": "task", "task-id": "update" }, - { "type": "task", "task-id": "reboot" } - ] - } - ] -} |