Make sure to only setup nextcloud after database is started

This commit is contained in:
Charlotte Van Petegem 2021-04-07 10:29:59 +02:00
parent 5f7864cf16
commit a70baddd21
No known key found for this signature in database
GPG key ID: 019E764B7184435A

View file

@ -37,5 +37,9 @@
}];
};
};
systemd.services."nextcloud-setup" = {
requires = [ "postgresql.service" ];
after = [ "postgresql.service" ];
};
};
}