Files
securityonion/salt/desktop/remove_gui.sls
Mike Reeves 8a3c2e7242 Add gui
2023-07-21 17:06:38 -04:00

18 lines
438 B
Plaintext

{% from 'vars/globals.map.jinja' import GLOBALS %}
{# we only want this state to run it is CentOS #}
{% if GLOBALS.os == 'OEL' %}
remove_graphical_target:
file.symlink:
- name: /etc/systemd/system/default.target
- target: /lib/systemd/system/multi-user.target
- force: True
{% else %}
desktop_trusted-ca_os_fail:
test.fail_without_changes:
- comment: 'SO Desktop can only be installed on Oracle Linux'
{% endif %}