New version of salt-formula from Saltstack
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- {%- from "salt/map.jinja" import config with context %}
- {%- set cluster = salt['pillar.get']('salt:control:cluster:'+cluster_name) %}
- {%- set node = salt['pillar.get']('salt:control:cluster:'+cluster_name+':node:'+node_name) %}
- #!/bin/bash
- curl --insecure -L http://bootstrap.saltstack.org -o install_salt.sh
- sh install_salt.sh
- echo "id: {{ node_name }}.{{ cluster.domain }}" > /etc/salt/minion.d/minion.conf
- echo "master: salt/master: {{ cluster.config.host }}" >> /etc/salt/minion.d/minion.conf
- service salt-minion restart
|