Answers for "commands for running ubuntu commands in a state file on saltstack"

0

commands for running ubuntu commands in a state file on saltstack

network_utilities:
 pkg.installed:
   - pkgs:
     - rsync
     - curl
nginx_pkg:
 pkg.installed:
   - name: nginx
nginx_service:
 service.running:
   - name: nginx
   - enable: True
   - require:
     - pkg: nginx_pkg
Posted by: Guest on June-19-2021
0

commands for running ubuntu commands in a state file on saltstack

network_utilities:
 pkg.installed:
   - pkgs:
     - rsync
     - curl
nginx_pkg:
 pkg.installed:
   - name: nginx
nginx_service:
 service.running:
   - name: nginx
   - enable: True
   - require:
     - pkg: nginx_pkg
Posted by: Guest on June-19-2021

Code answers related to "commands for running ubuntu commands in a state file on saltstack"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language