Files
securityonion/salt/nodered/init.sls

76 lines
1.9 KiB
Plaintext

# Copyright 2014,2015,2016,2017,2018,2019,2020 Security Onion Solutions, LLC
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# Create the nodered group
noderedgroup:
group.present:
- name: nodered
- gid: 947
# Add the nodered user
nodered:
user.present:
- uid: 947
- gid: 947
- home: /opt/so/conf/nodered
#noderedconfdir:
# file.directory:
# - name: /opt/so/conf/nodered
# - user: 947
# - group: 939
# - mode: 775
# - makedirs: True
noderedflows:
file.recurse:
- name: /opt/so/saltstack/default/salt/nodered/
- source: salt://nodered/files
- user: 947
- group: 939
- template: jinja
noderedflowsload:
file.managed:
- name: /usr/sbin/so-nodered-load-flows
- source: salt://nodered/files/nodered_load_flows
- user: 0
- group: 0
- mode: 755
- template: jinja
noderedlog:
file.directory:
- name: /opt/so/log/nodered
- user: 947
- group: 939
- mode: 755
- makedirs: True
so-nodered:
docker_container.running:
- image: soshybridhunter/so-nodered:HH1.2.2
- interactive: True
- binds:
- /opt/so/conf/nodered/:/data:rw
- port_bindings:
- 0.0.0.0:1880:1880
so-nodered-flows:
cmd.run:
- name: /usr/sbin/so-nodered-load-flows
- cwd: /