# 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,
# limitations under the License.
#
-include_recipe "apache::ssl"
+include_recipe "apache"
# chef_package = "chef-server-core_#{node[:chef][:server][:version]}_amd64.deb"
#
group "root"
end
+execute "chef-server-restart" do
+ action :nothing
+ command "chef-server-ctl restart"
+ user "root"
+ group "root"
+end
+
systemd_service "chef-server" do
description "Chef server"
after "network.target"
service "chef-server" do
action [:enable, :start]
+ subscribes :restart, "systemd_service[chef-server]"
end
apache_module "alias"
ssl_certificate "chef.openstreetmap.org" do
domains ["chef.openstreetmap.org", "chef.osm.org"]
- fallback_certificate "openstreetmap"
notifies :reload, "service[apache2]"
+ notifies :run, "execute[chef-server-restart]"
end
apache_site "chef.openstreetmap.org" do