mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2026-05-09 04:42:40 +02:00
32 lines
1.2 KiB
Plaintext
32 lines
1.2 KiB
Plaintext
# Copyright Security Onion Solutions LLC and/or licensed to Security Onion Solutions LLC under one
|
|
# or more contributor license agreements. Licensed under the Elastic License 2.0 as shown at
|
|
# https://securityonion.net/license; you may not use this file except in compliance with the
|
|
# Elastic License 2.0.
|
|
|
|
{% set hypervisor = pillar.get('minion_id', '') %}
|
|
|
|
{% if not hypervisor|regex_match('^([A-Za-z0-9._-]{1,253})$') %}
|
|
{% do salt.log.error('delete_hypervisor_orch: refusing unsafe minion_id=' ~ hypervisor) %}
|
|
delete_hypervisor_invalid_minion_id:
|
|
test.fail_without_changes:
|
|
- name: delete_hypervisor_invalid_minion_id
|
|
{% else %}
|
|
|
|
ensure_hypervisor_mine_deleted:
|
|
salt.function:
|
|
- name: file.remove
|
|
- tgt: 'G@role:so-manager or G@role:so-managerhype or G@role:so-managersearch or G@role:so-standalone or G@role:so-eval'
|
|
- tgt_type: compound
|
|
- arg:
|
|
- /var/cache/salt/master/minions/{{hypervisor}}
|
|
|
|
update_salt_cloud_profile:
|
|
salt.state:
|
|
- tgt: 'G@role:so-manager or G@role:so-managerhype or G@role:so-managersearch or G@role:so-standalone or G@role:so-eval'
|
|
- tgt_type: compound
|
|
- sls:
|
|
- salt.cloud.config
|
|
- concurrent: True
|
|
|
|
{% endif %}
|