summaryrefslogtreecommitdiffstats
path: root/tozt
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2018-10-27 12:58:42 -0400
committerJesse Luehrs <doy@tozt.net>2018-10-27 12:58:42 -0400
commit2daff6182efb87cb32ca34b1d8057834a5521524 (patch)
treec7c847060c291aa979b23299aa6602db6f3c8a1f /tozt
parent6c9b7a5196c5aafa6bb270265688f04554bdc5af (diff)
downloadpuppet-tozt-2daff6182efb87cb32ca34b1d8057834a5521524.tar.gz
puppet-tozt-2daff6182efb87cb32ca34b1d8057834a5521524.zip
make sure all of the services are also enabled
Diffstat (limited to 'tozt')
-rw-r--r--tozt/git/manifests/server.pp1
-rw-r--r--tozt/ttrss/manifests/init.pp3
2 files changed, 4 insertions, 0 deletions
diff --git a/tozt/git/manifests/server.pp b/tozt/git/manifests/server.pp
index 93219a7..76b02b6 100644
--- a/tozt/git/manifests/server.pp
+++ b/tozt/git/manifests/server.pp
@@ -11,5 +11,6 @@ class git::server {
service { "fcgiwrap.socket":
ensure => running,
+ enable => true;
}
}
diff --git a/tozt/ttrss/manifests/init.pp b/tozt/ttrss/manifests/init.pp
index 6bca0d6..e7c9d2f 100644
--- a/tozt/ttrss/manifests/init.pp
+++ b/tozt/ttrss/manifests/init.pp
@@ -56,6 +56,7 @@ class ttrss($dbpath) {
service { "postgresql":
ensure => running,
+ enable => true,
require => [
Package["postgresql"],
Exec["initialize db path"],
@@ -108,6 +109,7 @@ class ttrss($dbpath) {
service { "tt-rss":
ensure => running,
+ enable => true,
require => [
Package["tt-rss"],
Exec["fixup php.ini"],
@@ -118,6 +120,7 @@ class ttrss($dbpath) {
service { "php-fpm":
ensure => running,
+ enable => true,
require => Package["php-fpm"];
}
}