The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#
# (c) Jan Gehring <jan.gehring@gmail.com>
#
use v5.12.5;
our $VERSION = '1.16.0'; # VERSION
sub new {
my $that = shift;
my $proto = ref($that) || $that;
my $self = $proto->SUPER::new(@_);
bless( $self, $proto );
$self->{commands} = {
start => '/etc/init.d/%s start',
restart => '/etc/init.d/%s restart',
stop => '/etc/init.d/%s stop',
reload => '/etc/init.d/%s reload',
status => '/etc/init.d/%s status',
action => '/etc/init.d/%s %s',
};
return $self;
}
sub ensure {
my ( $self, $service, $options ) = @_;
my $what = $options->{ensure};
if ( $what =~ /^stop/ ) {
$self->stop( $service, $options );
eval { i_run "rm /etc/rc*.d/S*$service"; };
}
elsif ( $what =~ /^start/ || $what =~ m/^run/ ) {
$self->start( $service, $options );
my ($runlevel) = map { /run-level (\d)/ } i_run "who -r";
ln "/etc/init.d/$service", "/etc/rc${runlevel}.d/S99$service";
}
return 1;
}
1;