Skip to content

Commit

Permalink
Update so-minion
Browse files Browse the repository at this point in the history
  • Loading branch information
TOoSmOotH authored Sep 13, 2023
1 parent 19114c1 commit 22c0323
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion salt/manager/tools/sbin/so-minion
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,10 @@ function add_sensor_to_minion() {
echo " threads: '$CORECOUNT'" >> $PILLARFILE
echo "pcap:" >> $PILLARFILE
echo " enabled: True" >> $PILLARFILE
if [[ $is_pcaplimit ]]; then
echo " config:" >> $PILLARFILE
echo " diskfreepercentage: 40" >> $PILLARFILE
fi
echo " " >> $PILLARFILE
}

Expand Down Expand Up @@ -409,6 +413,7 @@ function apply_ES_state() {
salt-call state.apply elasticsearch concurrent=True
}
function createEVAL() {
is_pcaplimit=true
add_elasticsearch_to_minion
add_sensor_to_minion
add_strelka_to_minion
Expand All @@ -429,6 +434,7 @@ function createEVAL() {
}

function createSTANDALONE() {
is_pcaplimit=true
add_elasticsearch_to_minion
add_logstash_to_minion
add_sensor_to_minion
Expand Down Expand Up @@ -520,8 +526,9 @@ function createIDH() {
}

function createHEAVYNODE() {
is_pcaplimit=true
add_elasticsearch_to_minion
add_elastic_agent_to_minion
add_elastic_agent_to_minion
add_logstash_to_minion
add_sensor_to_minion
add_strelka_to_minion
Expand Down

0 comments on commit 22c0323

Please sign in to comment.