blob: 213efc50b68100df44fb53b8a192a302039c457e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# debian has some issues with absent
# init scripts.
# It's a bug in debian's provider that should be fixed in puppet, but in the
# meantime we need this hack.
#
# see: https://projects.puppetlabs.com/issues/9381
class postfix::disable::debian inherits postfix::disable::base {
Service['postfix']{
hasstatus => false,
}
}
|