I am setting up a daemon for a web service and I want to use the systemd DynamicUser=yes
feature because it seems cleaner not pollute the user table with a different user for each service.
As is customary, my web service has an integrated command line tool that initializes the database and performs maintenance tasks. This needs to happen as the same user that runs the web service, and it needs to happen before the service runs the first time, because without a database, it will not start up successfully.
I supposed I could just edit the ExecStart=
value to run the initializiation and run the unit once as a oneshot
, but I was wondering if systemd
provides a more convenient way to accomplish the same thing.