]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/passenger/recipes/default.rb
Move passenger instance registry to /run/passenger
[chef.git] / cookbooks / passenger / recipes / default.rb
index 229281c055167dcec3d3fc362a8761efb6388b0b..88570434f8984b90529df1ac14c2fe48c3e6b0f5 100644 (file)
@@ -8,7 +8,7 @@
 # you may not use this file except in compliance with the License.
 # You may obtain a copy of the License at
 #
-#     http://www.apache.org/licenses/LICENSE-2.0
+#     https://www.apache.org/licenses/LICENSE-2.0
 #
 # Unless required by applicable law or agreed to in writing, software
 # distributed under the License is distributed on an "AS IS" BASIS,
@@ -31,14 +31,25 @@ template "/usr/local/bin/passenger-ruby" do
   source "ruby.erb"
   owner "root"
   group "root"
-  mode 0755
+  mode 0o755
   notifies :reload, "service[apache2]"
 end
 
+systemd_tmpfile node[:passenger][:instance_registry_dir] do
+  type "d"
+  owner "root"
+  group "root"
+  mode "0755"
+end
+
 apache_module "passenger" do
   conf "passenger.conf.erb"
 end
 
+munin_plugin_conf "passenger" do
+  template "munin.erb"
+end
+
 munin_plugin "passenger_memory"
 munin_plugin "passenger_processes"
 munin_plugin "passenger_queues"