summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-08-22 21:44:20 -0400
committerJesse Luehrs <doy@tozt.net>2019-08-22 21:44:20 -0400
commit60bd703b3fb0b10281fbbf2e9152e46fdd3054cb (patch)
tree1a503c46618ffcb251cdab1b668630111d290c99
parentcf7a443447c39da67f788b670c2e37f76e67df9c (diff)
downloadpuppet-tozt-60bd703b3fb0b10281fbbf2e9152e46fdd3054cb.tar.gz
puppet-tozt-60bd703b3fb0b10281fbbf2e9152e46fdd3054cb.zip
fix exec
-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 890c81a..646196d 100644
--- a/modules/postgres/manifests/init.pp
+++ b/modules/postgres/manifests/init.pp
@@ -31,7 +31,7 @@ class postgres {
}
exec { "fixup db path permissions":
- command => "chown -R postgres:postgres ${dbpath}",
+ command => "/usr/bin/chown -R postgres:postgres ${dbpath}",
refreshonly => true,
require => [
Package['postgresql'],