We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5580fbb commit 807067bCopy full SHA for 807067b
INSTALL.md
@@ -157,10 +157,13 @@ production deployments. MySQL or PostgreSQL are better choices.
157
158
To configure the sqlite database backend:
159
160
-1. Create the database directory specified in the settings file:
+1. Create the database directory specified in the settings file, touch the
161
+database file and set the journal mode to WAL:
162
163
```shell
164
mkdir -p /var/lib/patchman/db
165
+touch /var/lib/patchman/db/patchman.db
166
+sqlite3 /var/lib/patchman/db/patchman.db 'PRAGMA journal_mode=WAL;'
167
```
168
169
2. Modify `/etc/patchman/local_settings.py` as follows:
0 commit comments