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:
Joshua Hoblitt 2013-10-24 09:34:31 -07:00
parent 23f1d3b994
commit 2ec19b80f9
2 changed files with 0 additions and 13 deletions

View file

@ -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,
}
}

View file

@ -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