aboutsummaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorDavid Timber <dxdt@dev.snart.me>2022-05-13 14:45:59 +0800
committerDavid Timber <dxdt@dev.snart.me>2022-05-13 14:45:59 +0800
commit515bf01a057f0b40d89c6b7b247eb4e2fc19d1b7 (patch)
tree1a625d2a85b858227c3bd67955da3da90be49bda /.vscode
parenta01c87416b241315a9268bb4eb5206ade8328069 (diff)
Impl ...
- launch.json: change debug cwd to the project root dir - Add subcmd "mods" - Docs - Tidy up sample and debug config files - Change core exec - 'dnf-list-instaled' -> 'rpm-list-installed' as dnf does not work on ro fs - Accept the exit code 1 from tar(allow live fs change) - Add the generic sample config - Fix 'run' subcmd not accepting empty task-id - Change module loading: modules are not required to have the 'backup_backends' var - Reduce required Python version by removing the use of match ... case - Fix 'exec-append' not taking 'env' into account - Remove use of exceptions from irrelevant packages - Fix unimpl methods of NullBackupBackend - Tidy up instantiation of raised exceptions - Change "include" behaviour - Relative config paths are now resolved like #include C preprocessor - Fix bug where "include" circular ref checked is not done with absolute paths of config files - Add own exception hierachy - aws-s3: change storage class only when "rot-storage-class" is different from "sink-storage-class"
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json30
1 files changed, 16 insertions, 14 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index d126290..2d8e2c8 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -8,13 +8,19 @@
"name": "palhm config",
"type": "python",
"request": "launch",
- "cwd": "${workspaceFolder}/src",
- "program": "palhm.py",
- "args": [
- "-f",
- "conf/py-debug/palhm.jsonc",
- "config"
- ],
+ "cwd": "${workspaceFolder}",
+ "program": "src/palhm.py",
+ "args": [ "-f", "src/conf/py-debug/palhm.jsonc", "config" ],
+ "console": "integratedTerminal",
+ "justMyCode": true
+ },
+ {
+ "name": "palhm mods",
+ "type": "python",
+ "request": "launch",
+ "cwd": "${workspaceFolder}",
+ "program": "src/palhm.py",
+ "args": [ "mods" ],
"console": "integratedTerminal",
"justMyCode": true
},
@@ -22,13 +28,9 @@
"name": "palhm run default",
"type": "python",
"request": "launch",
- "cwd": "${workspaceFolder}/src",
- "program": "palhm.py",
- "args": [
- "-f",
- "conf/py-debug/palhm.jsonc",
- "run"
- ],
+ "cwd": "${workspaceFolder}",
+ "program": "src/palhm.py",
+ "args": [ "-f", "src/conf/py-debug/palhm.jsonc", "run" ],
"console": "integratedTerminal",
"justMyCode": true
}