Skip to content
This repository was archived by the owner on Jul 26, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -4,7 +4,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