diff --git a/global/overlay/etc/puppet/modules/soc/manifests/intelmq.pp b/global/overlay/etc/puppet/modules/soc/manifests/intelmq.pp index 6390fc6..a79059f 100644 --- a/global/overlay/etc/puppet/modules/soc/manifests/intelmq.pp +++ b/global/overlay/etc/puppet/modules/soc/manifests/intelmq.pp @@ -61,6 +61,27 @@ class soc::intelmq( mode => '0755', } + file { + '/opt/intelmq/www': + ensure => directory, + owner => 'intelmq', + group => 'intelmq', + mode => '0755', + ; + '/opt/intelmq/www/intelmq-manager': + ensure => directory, + owner => 'intelmq', + group => 'www-data', + mode => '0750', + ; + '/opt/intelmq/www/fody': + ensure => directory, + owner => 'intelmq', + group => 'www-data', + mode => '0750', + ; + } + file { '/opt/intelmq/install/setup-nodesource.sh': ensure => file, content => file('soc/intelmq/setup-nodesource.sh'),