Skip to content

Commit 3fbe7db

Browse files
committed
Add a cron_provider fact
Similar to the package_provider and service_provider facts in stdlib, the cron provider is useful to know. On some minimal platforms, crontab is not installed and the cron type should not be used. By having a fact for this, it becomes easy to check.
1 parent 3cbd315 commit 3fbe7db

File tree

2 files changed

+47
-0
lines changed

2 files changed

+47
-0
lines changed

lib/facter/cron_provider.rb

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Fact: cron_provider
2+
#
3+
# Purpose: Returns the default provider Puppet will choose to manage cron
4+
# on this system
5+
#
6+
# Resolution: Instantiates a dummy cron resource and return the provider
7+
#
8+
# Caveats:
9+
#
10+
require 'puppet/type'
11+
require 'puppet/type/cron'
12+
13+
Facter.add(:cron_provider) do
14+
setcode do
15+
provider = Puppet::Type.type(:cron).newcron(name: 'dummy')[:provider]
16+
provider.to_s if provider
17+
end
18+
end
+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
require 'spec_helper'
2+
require 'puppet/type'
3+
require 'puppet/type/cron'
4+
5+
describe 'cron_provider', type: :fact do
6+
before(:each) { Facter.clear }
7+
after(:each) { Facter.clear }
8+
9+
subject { Facter.fact(:cron_provider) }
10+
11+
it { is_expected.not_to be_nil }
12+
13+
context 'when available' do
14+
it 'returns crontab' do
15+
provider = Puppet::Type.type(:cron).provider(:crontab)
16+
allow(Puppet::Type.type(:cron)).to receive(:defaultprovider).and_return(provider)
17+
18+
expect(subject.value).to eq('crontab')
19+
end
20+
end
21+
22+
context 'when unavailable' do
23+
it 'returns nil' do
24+
allow(Puppet::Type.type(:cron)).to receive(:defaultprovider).and_return(nil)
25+
26+
expect(subject.value).to be_nil
27+
end
28+
end
29+
end

0 commit comments

Comments
 (0)