line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# |
2
|
|
|
|
|
|
|
# (c) Jan Gehring |
3
|
|
|
|
|
|
|
# |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
package Rex::Service::NetBSD; |
6
|
|
|
|
|
|
|
|
7
|
1
|
|
|
1
|
|
15
|
use v5.12.5; |
|
1
|
|
|
|
|
3
|
|
8
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
42
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
our $VERSION = '1.14.2.3'; # TRIAL VERSION |
11
|
|
|
|
|
|
|
|
12
|
1
|
|
|
1
|
|
6
|
use Rex::Commands::File; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
8
|
|
13
|
1
|
|
|
1
|
|
7
|
use Rex::Logger; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
14
|
|
|
|
|
|
|
|
15
|
1
|
|
|
1
|
|
24
|
use base qw(Rex::Service::Base); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
388
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
sub new { |
18
|
0
|
|
|
0
|
0
|
|
my $that = shift; |
19
|
0
|
|
0
|
|
|
|
my $proto = ref($that) || $that; |
20
|
0
|
|
|
|
|
|
my $self = $proto->SUPER::new(@_); |
21
|
|
|
|
|
|
|
|
22
|
0
|
|
|
|
|
|
bless( $self, $proto ); |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
$self->{commands} = { |
25
|
0
|
|
|
|
|
|
start => '/etc/rc.d/%s onestart', |
26
|
|
|
|
|
|
|
restart => '/etc/rc.d/%s onerestart', |
27
|
|
|
|
|
|
|
stop => '/etc/rc.d/%s onestop', |
28
|
|
|
|
|
|
|
reload => '/etc/rc.d/%s onereload', |
29
|
|
|
|
|
|
|
status => '/etc/rc.d/%s onestatus', |
30
|
|
|
|
|
|
|
action => '/etc/rc.d/%s %s', |
31
|
|
|
|
|
|
|
}; |
32
|
|
|
|
|
|
|
|
33
|
0
|
|
|
|
|
|
return $self; |
34
|
|
|
|
|
|
|
} |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
sub ensure { |
37
|
0
|
|
|
0
|
0
|
|
my ( $self, $service, $options ) = @_; |
38
|
|
|
|
|
|
|
|
39
|
0
|
|
|
|
|
|
my $what = $options->{ensure}; |
40
|
|
|
|
|
|
|
|
41
|
0
|
0
|
0
|
|
|
|
if ( $what =~ /^stop/ ) { |
|
|
0
|
|
|
|
|
|
42
|
0
|
|
|
|
|
|
$self->stop( $service, $options ); |
43
|
0
|
|
|
|
|
|
file "/etc/rc.conf.d/${service}", ensure => "absent"; |
44
|
0
|
|
|
|
|
|
delete_lines_matching "/etc/rc.conf", |
45
|
|
|
|
|
|
|
matching => qr/^\s*${service}="?((?i)YES)"?/; |
46
|
|
|
|
|
|
|
} |
47
|
|
|
|
|
|
|
elsif ( $what =~ /^start/ || $what =~ m/^run/ ) { |
48
|
0
|
|
|
|
|
|
$self->start( $service, $options ); |
49
|
0
|
|
|
|
|
|
file "/etc/rc.conf.d/${service}", ensure => "absent"; |
50
|
0
|
|
|
|
|
|
append_or_amend_line "/etc/rc.conf", |
51
|
|
|
|
|
|
|
line => "${service}=YES", |
52
|
|
|
|
|
|
|
regexp => qr/^\s*${service}="?((?i)YES|NO)"?/; |
53
|
|
|
|
|
|
|
} |
54
|
|
|
|
|
|
|
|
55
|
0
|
|
|
|
|
|
return 1; |
56
|
|
|
|
|
|
|
} |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
1; |