Advertisement
ffredrikk

sls - doesn't install quicktime

Feb 19th, 2016
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.59 KB | None | 0 0
  1. {% if salt['environ.get']('SALTED_QUICKTIME') != '1' %}
  2. quicktime_install:
  3.   module.run:
  4.     - order: 1
  5.     - name: cp.get_url
  6.     - path: https://secure-appldnld.apple.com/QuickTime/031-43075-20160107-C0844134-B3CD-11E5-B1C0-43CA8D551951/QuickTimeInstaller.exe
  7.     - dest: C:/Users/iruser/Downloads/QuickTimeInstaller.exe
  8.   cmd.run:
  9.     - order: 2
  10.     - cwd: C:/Users/iruser/Downloads
  11.     - name: C:/Users/iruser/Downloads/QuickTimeInstaller.exe /quiet /norestart ALLUSERS=1
  12.   environ.setenv:
  13.     - order: 3
  14.     - name: SALTED_QUICKTIME
  15.     - value: '1'
  16.     - update_minion: True
  17. {% endif %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement