5 # Copyright:: 2022, OpenStreetMap Foundation
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
11 # https://www.apache.org/licenses/LICENSE-2.0
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
34 keys = data_bag_item("oxidized", "keys")
35 devices = data_bag_item("oxidized", "devices")
37 template "/etc/oxidized/config" do
42 notifies :restart, "service[oxidized]"
45 template "/etc/oxidized/routers.db" do
46 source "routers.db.erb"
50 variables :devices => devices
51 notifies :restart, "service[oxidized]"
54 directory "/var/log/oxidized" do
60 # Key is set as a deployment key in github repo
61 file "/opt/oxidized/.ssh/id_rsa" do
66 notifies :delete, "file[/opt/oxidized/.ssh/id_rsa.pub]", :immediately
67 notifies :restart, "service[oxidized]"
70 # Ensure public key is deleted if private key is changed. Trigged by notify
71 file "/opt/oxidized/.ssh/id_rsa.pub" do
75 exec "/opt/oxidized/.ssh/id_rsa.pub" do
76 command "ssh-keygen -f /opt/oxidized/.ssh/id_rsa -y > /opt/oxidized/.ssh/id_rsa.pub"
79 creates "/opt/oxidized/.ssh/id_rsa.pub"
80 notifies :restart, "service[oxidized]"
83 git "/opt/oxidized" do
85 repository "https://github.com/openstreetmap/oxidized.git"
89 notifies :run, "bundle_install[/opt/oxidized]"
92 git "/var/lib/oxidized/configs.git" do
94 repository "git@github.com:openstreetmap/oxidized-configs.git" # Uses oxidized ssh key
95 checkout_branch "master" # branch is hardcoded in oxidized
100 bundle_install "/opt/oxidized" do
102 options "--deployment"
105 notifies :restart, "service[oxidized]"
108 # Based on https://github.com/ytti/oxidized/blob/master/extra/oxidized.service
109 systemd_service "oxidized" do
110 description "oxidized network device backup daemon"
111 after "network.target"
113 working_directory "/opt/oxidized"
114 exec_start "#{node[:ruby][:bundle]} exec oxidized"
115 environment "OXIDIZED_HOME" => "/etc/oxidized",
116 "OXIDIZED_LOGS" => "/var/log/oxidized"
120 protect_system "full"
122 no_new_privileges true
124 notifies :restart, "service[oxidized]"
127 service "oxidized" do
128 action [:enable, :start]
131 template "/etc/logrotate.d/oxidized" do
132 source "logrotate.erb"