mirror of
https://github.com/valitydev/salt-common.git
synced 2024-11-07 02:45:21 +00:00
20 lines
432 B
Plaintext
20 lines
432 B
Plaintext
{% import 'pkg/common' as pkg %}
|
|
include:
|
|
- gentoo.portage.packages
|
|
|
|
lksctp-tools:
|
|
pkg.latest:
|
|
- oneshot: True
|
|
- pkgs:
|
|
- {{ pkg.gen_atom('net-misc/lksctp-tools') }}
|
|
- require:
|
|
- file: gentoo.portage.packages
|
|
{% if grains['osarch'].startswith('arm') %}
|
|
portage_config.flags:
|
|
- name: net-misc/lksctp-tools
|
|
- accept_keywords:
|
|
- ~arm
|
|
- watch_in:
|
|
- pkg: lksctp-tools
|
|
{% endif %}
|