Merge pull request #30 from noelmcloughlin/macos

tar is bundled with MacOS. Fix #38
This commit is contained in:
Javier Bértoli 2018-10-03 16:33:39 -03:00 committed by GitHub
commit 7030ae1311
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -2,7 +2,7 @@
# vim: ft=sls
{% from "packages/map.jinja" import packages with context %}
{% set req_packages = packages.pkgs.required.pkgs + ['curl', 'tar', 'bzip2', 'gzip',] %}
{% set req_packages = packages.pkgs.required.pkgs + packages.archives.pkgs.required %}
include:
- packages.pkgs

View file

@ -34,6 +34,8 @@ packages:
states: []
pkgs: []
archives:
pkgs:
required: ['curl', 'bzip2', 'gzip']
types: ('tar','zip', 'rar',)
wanted: {} #note: dict
unwanted: []