-
Notifications
You must be signed in to change notification settings - Fork 495
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(FACT-3114) Arch Linux: Implement os version facts
From this branch: ``` $ bundle exec facter os { architecture => "x86_64", distro => { codename => "n/a", description => "Arch Linux", id => "Arch", release => { full => "rolling", major => "rolling", minor => null }, specification => "n/a" }, family => "Archlinux", hardware => "x86_64", name => "Archlinux", release => { full => "6.9.3-arch1-1", major => "6", minor => "9" }, selinux => { enabled => false } } ``` Facter 3 on Archlinux: ``` $ facter os { architecture => "x86_64", distro => { codename => "n/a", description => "Arch Linux", id => "Arch", release => { full => "rolling", major => "rolling" }, specification => "n/a" }, family => "Archlinux", hardware => "x86_64", name => "Archlinux", release => { full => "6.9.3-arch1-1", major => "6", minor => "9" }, selinux => { enabled => false } } ```
- Loading branch information
1 parent
ccd3d6d
commit d1ad005
Showing
4 changed files
with
26 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,7 @@ module Config | |
Sled | ||
] | ||
}, | ||
'Archlinux', | ||
'Gentoo', | ||
'Alpine', | ||
'Photon', | ||
|
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,21 @@ | ||
# frozen_string_literal: true | ||
|
||
module Facts | ||
module Archlinux | ||
module Os | ||
class Release | ||
FACT_NAME = 'os.release' | ||
|
||
def call_the_resolver | ||
# Arch Linux is rolling release and has no version numbers | ||
# For historical reasons facter used the kernel version as OS version on Arch Linux | ||
kernelrelease = Facter::Resolvers::Uname.resolve(:kernelrelease) | ||
versions = kernelrelease.split('.') | ||
hash = { full: kernelrelease, major: versions[0], minor: versions[1] } | ||
|
||
Facter::ResolvedFact.new(FACT_NAME, hash) | ||
end | ||
end | ||
end | ||
end | ||
end |
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