From d9005c157d22663c066662e0a741ec2561688eb5 Mon Sep 17 00:00:00 2001 From: m0duspwnens Date: Thu, 24 Sep 2020 11:26:58 -0400 Subject: [PATCH] fix common salt package name for salt.master state for ubuntu - https://github.com/Security-Onion-Solutions/securityonion/issues/1388 --- salt/salt/master.sls | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/salt/salt/master.sls b/salt/salt/master.sls index 20a204909..442a9d240 100644 --- a/salt/salt/master.sls +++ b/salt/salt/master.sls @@ -1,3 +1,5 @@ +{% from 'salt/map.jinja' import COMMON with context %} + {% set show_top = salt['state.show_top']() %} {% set top_states = show_top.values() | join(', ') %} @@ -9,7 +11,7 @@ include: salt_master_package: pkg.installed: - pkgs: - - salt + - {{ COMMON }} - salt-master - hold: True