Skip to content

Commit 11f90bf

Browse files
committed
Fix unmask_rpc-gssd.service exec resource
Fixes #109
1 parent 8ffdc26 commit 11f90bf

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
* Wed Aug 21 2024 Steven Pritchard <[email protected]> - 7.6.1
2+
- Fix unmask_rpc-gssd.service exec resource (#109)
3+
14
* Mon Oct 23 2023 Steven Pritchard <[email protected]> - 7.6.0
25
- [puppetsync] Add EL9 support
36

manifests/base/service.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
}
7171

7272
exec { 'unmask_rpc-gssd.service':
73-
command => '/usr/bin/systemctl mask rpc-gssd.service',
73+
command => '/usr/bin/systemctl unmask rpc-gssd.service',
7474
onlyif => '/usr/bin/systemctl status rpc-gssd.service | /usr/bin/grep -qw masked',
7575
notify => Service['rpc-gssd.service']
7676
}

metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "simp-nfs",
3-
"version": "7.6.0",
3+
"version": "7.6.1",
44
"author": "SIMP Team",
55
"summary": "manages NFS server and client, also PKI and stunnelling",
66
"license": "Apache-2.0",

spec/classes/base/service_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
} ) }
7373

7474
it { is_expected.to create_exec('unmask_rpc-gssd.service').with( {
75-
:command => '/usr/bin/systemctl mask rpc-gssd.service',
75+
:command => '/usr/bin/systemctl unmask rpc-gssd.service',
7676
:onlyif => '/usr/bin/systemctl status rpc-gssd.service | /usr/bin/grep -qw masked'
7777
} ) }
7878
end

0 commit comments

Comments
 (0)