Skip to content

Instantly share code, notes, and snippets.

@itainteasy
Forked from garbast/steam.sls
Created May 23, 2016 04:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save itainteasy/aad99d599616213f81b6c2d6e61021a6 to your computer and use it in GitHub Desktop.
Save itainteasy/aad99d599616213f81b6c2d6e61021a6 to your computer and use it in GitHub Desktop.
Install steam via saltstack
dpkg_steam_license:
cmd.run:
- unless: which steam
- name: '/bin/echo /usr/bin/debconf steam/license note | /usr/bin/debconf-set-selections'
- require_in:
- pkg: steam
- cmd: dpkg_steam_question
dpkg_steam_question:
cmd.run:
- unless: which steam
- name: '/bin/echo /usr/bin/debconf steam/question select "I AGREE" | /usr/bin/debconf-set-selections'
- require_in:
- pkg: steam
steam:
pkg.installed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment