Skip to content
Snippets Groups Projects
Commit 905d7e17 authored by Arkadiusz Dzięgiel's avatar Arkadiusz Dzięgiel Committed by Raphaël Pinson
Browse files

added support for Alpine Linux

parent 96b74f9f
No related branches found
No related tags found
No related merge requests found
...@@ -53,7 +53,21 @@ class postfix::params { ...@@ -53,7 +53,21 @@ class postfix::params {
} }
default: { default: {
fail "Unsupported OS family '${::osfamily}'" case $::operatingsystem {
'Alpine': {
$aliasesseltype = undef
$seltype = undef
$restart_cmd = '/etc/init.d/postfix reload'
$mailx_package = 'mailx'
$master_os_template = "${module_name}/master.cf.debian.erb"
}
default: {
fail "Unsupported OS family '${::osfamily}' and OS '${::operatingsystem}'"
}
}
} }
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment