diff options
author | Julien Dessaux | 2023-04-16 23:38:02 +0200 |
---|---|---|
committer | Julien Dessaux | 2023-04-16 23:38:02 +0200 |
commit | 1045a21fd5c62dfec6d83afdd2c621fb0a8f46ea (patch) | |
tree | 47b0a093c09b75a9ea65fe575f454d7a48267823 /content/docs | |
parent | Added wireguard on kubernetes part 1 blog article (diff) | |
download | www-1045a21fd5c62dfec6d83afdd2c621fb0a8f46ea.tar.gz www-1045a21fd5c62dfec6d83afdd2c621fb0a8f46ea.tar.bz2 www-1045a21fd5c62dfec6d83afdd2c621fb0a8f46ea.zip |
Fixed VACUUM INTO sqlite3 commands across various articles
Diffstat (limited to 'content/docs')
-rw-r--r-- | content/docs/adyxax.org/social/backups.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/docs/adyxax.org/social/backups.md b/content/docs/adyxax.org/social/backups.md index da28d25..2d6ba40 100644 --- a/content/docs/adyxax.org/social/backups.md +++ b/content/docs/adyxax.org/social/backups.md @@ -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" ``` |