remove purging of /usr/local/bin/concatfragments.sh
The hard coded path of `/usr/local/bin/concatfragments.sh` hasn't been used for "a long time" so there's no reason to carry the cleanup around any longer.
This commit is contained in:
parent
23f1d3b994
commit
2ec19b80f9
2 changed files with 0 additions and 13 deletions
|
@ -33,10 +33,4 @@ class concat::setup {
|
|||
ensure => directory,
|
||||
mode => '0755',
|
||||
}
|
||||
|
||||
## Old versions of this module used a different path.
|
||||
file { '/usr/local/bin/concatfragments.sh':
|
||||
ensure => absent,
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -24,13 +24,6 @@ describe 'concat::setup', :type => :class do
|
|||
})
|
||||
end
|
||||
end
|
||||
|
||||
it do
|
||||
should contain_file('/usr/local/bin/concatfragments.sh').with({
|
||||
:ensure => 'absent',
|
||||
:backup => false,
|
||||
})
|
||||
end
|
||||
end
|
||||
|
||||
context 'facts' do
|
||||
|
|
Loading…
Reference in a new issue