From 78fb35a2584c0901034c8d9726be4f43adca4e87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Bj=C3=B6rklund?= Date: Tue, 19 Nov 2024 12:36:50 +0100 Subject: [PATCH] Bugfix. --- .../puppet/modules/soc/manifests/intelmq.pp | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) 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'),