Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/remove-legacy-top-scope-syntax'
Browse files Browse the repository at this point in the history
  • Loading branch information
hcartiaux committed Aug 30, 2024
2 parents 1c6457e + 4309092 commit ec41082
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ create those.
The basic usage is:

```puppet
include ::etherpad
include etherpad
```

note that this will use the local DirtyDB and is not recommended beyond basic testing.
Expand Down
4 changes: 2 additions & 2 deletions manifests/service.pp
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
default => $etherpad::service_provider,
}

contain "::etherpad::service::${svc_provider}"
contain "etherpad::service::${svc_provider}"

service { $etherpad::service_name:
ensure => $etherpad::service_ensure,
provider => $svc_provider,
}

unless $etherpad::ensure == 'absent' {
Class["::etherpad::service::${svc_provider}"]
Class["etherpad::service::${svc_provider}"]
-> Service[$etherpad::service_name]
}
}
2 changes: 1 addition & 1 deletion spec/defines/etherpad_plugin_common_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
on_supported_os.each do |os, facts|
context "on #{os}" do
let(:pre_condition) do
'include ::etherpad'
'include etherpad'
end
let(:facts) do
facts
Expand Down

0 comments on commit ec41082

Please sign in to comment.