Commit 3acc3677b28932d62fa9f99775cce078bccfb2da

Authored by Paulo Tada
1 parent 6e893217
Exists in master and in 1 other branch mezuro_spb

Adding monitor machine

Showing 2 changed files with 5 additions and 1 deletions   Show diff stats
nodes.yaml
... ... @@ -14,6 +14,10 @@ database:
14 14 run_list:
15 15 - role[server]
16 16 - role[database_server]
  17 +monitor:
  18 + run_list:
  19 + - role[server]
  20 + - role[monitor_server]
17 21 reverseproxy:
18 22 run_list:
19 23 - role[server]
... ...
roles/server.rb
... ... @@ -5,5 +5,5 @@ run_list *[
5 5 'recipe[firewall]',
6 6 'recipe[email::client]',
7 7 'recipe[munin::node]',
8   - #'recipe[rsyslog]'
  8 + 'recipe[rsyslog]'
9 9 ]
... ...