Skip to content

Commit

Permalink
Merge pull request voxpupuli#583 from bastelfreak/arch2
Browse files Browse the repository at this point in the history
Add official archlinux support
  • Loading branch information
alexjfisher committed Aug 31, 2017
2 parents 5a65b55 + 7af2c0d commit d8ae65b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@
},
{
"operatingsystem": "OpenBSD"
},
{
"operatingsystem": "Archlinux"
}
],
"requirements": [
Expand Down
3 changes: 2 additions & 1 deletion spec/classes/rabbitmq_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@

has_systemd = (
(facts[:osfamily] == 'RedHat' && facts[:os]["release"]["major"].to_i >= 7) ||
(facts[:osfamily] == 'Debian' && facts[:os]["release"]["full"] == '16.04')
(facts[:osfamily] == 'Debian' && facts[:os]["release"]["full"] == '16.04') ||
(facts[:osfamily] == 'Archlinux')
)

it { is_expected.to compile.with_all_deps }
Expand Down

0 comments on commit d8ae65b

Please sign in to comment.