From a98f185bb1612b38b9a2eaed85ac9711ca2afe9f Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Sun, 8 Nov 2020 10:58:39 +0000 Subject: [PATCH] Remove remains of long disabled streaming replication logic --- cookbooks/planet/recipes/replication.rb | 35 ------------------- .../templates/default/streaming.init.erb | 31 ---------------- 2 files changed, 66 deletions(-) delete mode 100644 cookbooks/planet/templates/default/streaming.init.erb diff --git a/cookbooks/planet/recipes/replication.rb b/cookbooks/planet/recipes/replication.rb index 76b014867..883ab7225 100644 --- a/cookbooks/planet/recipes/replication.rb +++ b/cookbooks/planet/recipes/replication.rb @@ -269,38 +269,3 @@ else action :delete end end - -# directory "/var/lib/replication/streaming" do -# owner "planet" -# group "planet" -# mode 0o755 -# end -# -# directory "/var/log/replication" do -# owner "planet" -# group "planet" -# mode 0o755 -# end -# -# ["streaming-replicator", "streaming-server"].each do |name| -# template "/etc/init.d/#{name}" do -# source "streaming.init.erb" -# owner "root" -# group "root" -# mode 0o755 -# variables :service => name -# end -# -# if node[:planet][:replication] == "enabled" -# service name do -# action [:enable, :start] -# supports :restart => true, :status => true -# subscribes :restart, "template[/etc/init.d/#{name}]" -# end -# else -# service name do -# action [:disable, :stop] -# supports :restart => true, :status => true -# end -# end -# end diff --git a/cookbooks/planet/templates/default/streaming.init.erb b/cookbooks/planet/templates/default/streaming.init.erb deleted file mode 100644 index 85ed3ef67..000000000 --- a/cookbooks/planet/templates/default/streaming.init.erb +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/bash - -# DO NOT EDIT - This file is being maintained by Chef - -start() { - start-stop-daemon --start --chuid planet --background --make-pidfile --pidfile /var/run/<%= @service %>.pid --exec /usr/local/bin/<%= @service %> -} - -stop() { - start-stop-daemon --stop --retry 300 --pidfile /var/run/<%= @service %>.pid -} - -status() { - start-stop-daemon --status --pidfile /var/run/<%= @service %>.pid -} - -case "$1" in - start) - start - ;; - stop) - stop - ;; - restart) - stop || exit $? - start - ;; - status) - status - ;; -esac -- 2.45.1