Fixed VACUUM INTO sqlite3 commands across various articles

This commit is contained in:
Julien Dessaux 2023-04-16 23:38:02 +02:00
parent b5715473e6
commit 1045a21fd5
Signed by: adyxax
GPG key ID: F92E51B86E07177E
3 changed files with 3 additions and 3 deletions

View file

@ -11,6 +11,6 @@ There is only on jobs :
```yaml
- name: ktistec-db
path: "/tmp/ktistec.db"
pre_command: "echo 'VACUUM INTO \"/tmp/ktistec.db\"'|sqlite3 /srv/ktistec-db/ktistec.db"
pre_command: "echo \"VACUUM INTO '/tmp/ktistec.db'\"|sqlite3 /srv/ktistec-db/ktistec.db"
post_command: "rm -f /tmp/ktistec.db"
```