Compare commits

..

4 commits

Author SHA1 Message Date
Jakob Lechner
f490ba26d0 Fix RuntimeDirectoryMode
`config.json` inside the runtime directory contains secrets and should
therefore not be world-readable.
2025-07-21 01:07:24 +02:00
Jakob Lechner
8894e4dd23 Remove assignment of unused variable 2025-07-21 01:06:52 +02:00
Jakob Lechner
abc8263e02 Force DHCP server to bind sockets
and add restart policy to systemd service
2025-07-21 01:06:52 +02:00
Jakob Lechner
8bd6ffbc7a Fix database privileges
Fixes psycopg2.errors.InsufficientPrivilege: permission denied for
schema public
2025-07-21 01:06:52 +02:00

View file

@ -101,6 +101,8 @@ in {
\connect fieldpoc
GRANT USAGE, CREATE ON SCHEMA public TO fieldpoc;
\connect postgres
'';
};