Skip to content

Commit

Permalink
Merge branch '3.9.4_7.2.0-fix-linting' into 3.9.5_7.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jose M committed Aug 9, 2019
2 parents 2016f56 + 4ebeea5 commit ca923c7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
22 changes: 11 additions & 11 deletions kitchen/manifests/site.pp
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
node 'manager00_ubuntu' {
class { "wazuh::manager":
class { 'wazuh::manager':
configure_wodle_openscap => false
}
}
node 'agent00_ubuntu' {
class { "wazuh::agent":
wazuh_register_endpoint => "10.1.0.9",
wazuh_reporting_endpoint => "10.1.0.9",
configure_wodle_openscap => false
class { 'wazuh::agent':
wazuh_register_endpoint => '10.1.0.9',
wazuh_reporting_endpoint => '10.1.0.9',
configure_wodle_openscap => false
}
}
node 'manager00_centos' {
class { "wazuh::manager":
configure_wodle_openscap => true
class { 'wazuh::manager':
configure_wodle_openscap => true
}
}
node 'agent00_centos' {
class { "wazuh::agent":
wazuh_register_endpoint => "10.1.0.11",
wazuh_reporting_endpoint => "10.1.0.11",
configure_wodle_openscap => true
class { 'wazuh::agent':
wazuh_register_endpoint => '10.1.0.11',
wazuh_reporting_endpoint => '10.1.0.11',
configure_wodle_openscap => true
}
}
6 changes: 3 additions & 3 deletions manifests/filebeat.pp
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@
}

exec { 'Installing filebeat module ... Downloading package':
path => '/usr/bin',
command => "curl -o /root/${$wazuh_filebeat_module} https://packages-dev.wazuh.com/3.x/filebeat/${$wazuh_filebeat_module}",
path => '/usr/bin',
command => "curl -o /root/${$wazuh_filebeat_module} https://packages-dev.wazuh.com/3.x/filebeat/${$wazuh_filebeat_module}",
}

exec { 'Unpackaging ...':
command => "/bin/tar -xzvf /root/wazuh-filebeat-0.1.tar.gz -C /usr/share/filebeat/module",
command => '/bin/tar -xzvf /root/wazuh-filebeat-0.1.tar.gz -C /usr/share/filebeat/module',
notify => Service['filebeat']
}

Expand Down

0 comments on commit ca923c7

Please sign in to comment.