forked from simp/pupmod-voxpupuli-systemd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request voxpupuli#192 from jcpunk/puppet-lint
Resolve puppet-lint
- Loading branch information
Showing
3 changed files
with
32 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,4 +1,27 @@ | ||
# @summary Valid rpm architectures. | ||
# Output of `rpm -q --queryformat '%{arch}\n' package` | ||
# @see https://github.com/rpm-software-management/rpm/blob/master/rpmrc.in | ||
type Yum::RpmArch = Enum['noarch', 'x86_64', 'i386', 'arm', 'ppc64', 'ppc64le', 'sparc64', 'ia64' ,'alpha' , 'ip' , 'm68k', 'mips', 'mipsel' , 'mk68k' , 'mint' , 'ppc', 'rs6000' , 's390', 's390x' , 'sh', 'sparc', 'xtensa'] | ||
type Yum::RpmArch = Enum[ | ||
'noarch', | ||
'x86_64', | ||
'i386', | ||
'arm', | ||
'ppc64', | ||
'ppc64le', | ||
'sparc64', | ||
'ia64', | ||
'alpha', | ||
'ip', | ||
'm68k', | ||
'mips', | ||
'mipsel', | ||
'mk68k', | ||
'mint', | ||
'ppc', | ||
'rs6000', | ||
's390', | ||
's390x', | ||
'sh', | ||
'sparc', | ||
'xtensa', | ||
] |
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