WIP Add initial cookbook and roles for email service

This commit is contained in:
Râu Cao
2023-12-01 09:50:35 +01:00
parent 158a9c2fbe
commit fbcf1ed5e7
23 changed files with 1587 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
# Chef InSpec test for recipe kosmos_email::default
# The Chef InSpec reference, with examples and extensive documentation, can be
# found at https://docs.chef.io/inspec/resources/
describe package('postfix') do
it { should be_installed }
end
# describe package('dovecot-core') do
# it { should be_installed }
# end
describe port(25) do
it { should be_listening }
end