-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: standardise structure from the
template-formula
- Loading branch information
Showing
5 changed files
with
146 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# -*- coding: utf-8 -*- | ||
# vim: ft=yaml | ||
# | ||
# Setup variables using grains['osarch'] based logic. | ||
# You just need to add the key:values for an `osarch` that differ | ||
# from `defaults.yaml`. | ||
# Only add an `osarch` which is/will be supported by the formula. | ||
# | ||
# If you do not need to provide defaults via the `osarch` grain, | ||
# you will need to provide at least an empty dict in this file, e.g. | ||
# osarch: {} | ||
--- | ||
amd64: | ||
arch: amd64 | ||
|
||
x86_64: | ||
arch: amd64 | ||
|
||
386: | ||
arch: 386 | ||
|
||
arm64: | ||
arch: arm64 | ||
|
||
armv6l: | ||
arch: armv6l | ||
|
||
armv7l: | ||
arch: armv7l | ||
|
||
ppc64le: | ||
arch: ppc64le | ||
|
||
s390x: | ||
arch: s390x |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# -*- coding: utf-8 -*- | ||
# vim: ft=yaml | ||
# | ||
# Setup variables using grains['os'] based logic. | ||
# You just need to add the key:values for an `os` that differ | ||
# from `defaults.yaml` + `osarch.yaml` + `os_family.yaml`. | ||
# Only add an `os` which is/will be supported by the formula. | ||
# | ||
# If you do not need to provide defaults via the `os` grain, | ||
# you will need to provide at least an empty dict in this file, e.g. | ||
# osmap: {} | ||
--- | ||
# os_family: Debian | ||
Ubuntu: {} | ||
Raspbian: {} | ||
|
||
# os_family: RedHat | ||
Fedora: {} | ||
CentOS: {} | ||
Amazon: {} | ||
|
||
# os_family: Suse | ||
SUSE: {} | ||
openSUSE: {} | ||
|
||
# os_family: Gentoo | ||
Funtoo: {} | ||
|
||
# os_family: Arch | ||
Manjaro: {} | ||
|
||
# os_family: Solaris | ||
SmartOS: {} |