Saltstack Official Linux Formula
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.

11 lines
207B

  1. {%- from "linux/map.jinja" import system with context -%}
  2. #!/bin/sh
  3. while true; do
  4. case $1 in
  5. {%- for policy in system.policyrcd %}
  6. {{ policy.package }}) {{ policy.action }};;
  7. {%- endfor %}
  8. esac
  9. done