fix: add systemctl restart
Some checks failed
Continuous Delivery / build_n_upload (push) Has been cancelled

This commit is contained in:
2026-02-22 22:57:20 +01:00
parent 5870da6249
commit ac5a23350d

View File

@@ -24,7 +24,8 @@ Install the database management system called postgresql with a predefined confi
%post
# Restart services
systemctl daemon-reload
systemctl reenable --now postgresql.service
systemctl reenable postgresql.service
systemctl restart postgresql.service
# Create databases and users from DB_USERS variable (separator is ",") if not existing
IFS="," read -ra users <<< "$DB_USERS";