From 03d9094c002c1c50464147710c7daed02f0c4220 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Bj=C3=B6rklund?= Date: Thu, 14 Nov 2024 15:58:56 +0100 Subject: [PATCH] Typo. --- global/overlay/etc/puppet/modules/soc/manifests/intelmq.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global/overlay/etc/puppet/modules/soc/manifests/intelmq.pp b/global/overlay/etc/puppet/modules/soc/manifests/intelmq.pp index 6d54384..0501aba 100644 --- a/global/overlay/etc/puppet/modules/soc/manifests/intelmq.pp +++ b/global/overlay/etc/puppet/modules/soc/manifests/intelmq.pp @@ -111,7 +111,7 @@ class soc::intelmq( $api_user = lookup('intelmq_api_user.username', undef, undef, 'test') $api_pass = lookup('intelmq_api_user.password', undef, undef, 'pass') exec { 'Setup intelmq-api user': - command => 'sudo -u intelmq /opt/intelmq/venv/bin/intelmq-api-adduser --user ${api_user} --password ${api_password}' + command => 'sudo -u intelmq /opt/intelmq/venv/bin/intelmq-api-adduser --user ${api_user} --password ${api_password}', creates => '/etc/intelmq/api-session.sqlite', }