summaryrefslogtreecommitdiffstats
path: root/modules/postgres/manifests
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2020-07-11 01:41:10 -0400
committerJesse Luehrs <doy@tozt.net>2020-07-11 01:41:10 -0400
commit46259587634a5c95136594e5066372541259e56b (patch)
tree23bbe84ce56a83b214b7cf1682ad8ddd100e8c7e /modules/postgres/manifests
parent5c22a2a78960b4327fccfab5fc483e2761f93486 (diff)
downloadpuppet-tozt-46259587634a5c95136594e5066372541259e56b.tar.gz
puppet-tozt-46259587634a5c95136594e5066372541259e56b.zip
fix systemd override dependencies
Diffstat (limited to 'modules/postgres/manifests')
-rw-r--r--modules/postgres/manifests/init.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/postgres/manifests/init.pp b/modules/postgres/manifests/init.pp
index af60384..00c26cb 100644
--- a/modules/postgres/manifests/init.pp
+++ b/modules/postgres/manifests/init.pp
@@ -49,9 +49,9 @@ class postgres {
service { "postgresql":
ensure => running,
enable => true,
+ subscribe => Systemd::Override['postgresql'],
require => [
Package["postgresql"],
- Systemd::Override['postgresql'],
Exec["initialize db path"],
];
}