diff options
| author | Luke Kanies <luke@madstop.com> | 2009-02-14 11:43:25 -0600 |
|---|---|---|
| committer | Luke Kanies <luke@madstop.com> | 2009-02-14 12:24:42 -0600 |
| commit | 44f97aa5815d4a8ab73302bd75b85e045f9944c4 (patch) | |
| tree | 13037a58d0666e2533bf85f552327e8a6425f7be /lib/puppet/provider | |
| parent | 04af7b4ead1cbb1466e908e6612b6cc2d4deab53 (diff) | |
| download | puppet-44f97aa5815d4a8ab73302bd75b85e045f9944c4.tar.gz puppet-44f97aa5815d4a8ab73302bd75b85e045f9944c4.tar.xz puppet-44f97aa5815d4a8ab73302bd75b85e045f9944c4.zip | |
Only backing up within parsedfile when managing files
I was getting failing tests because I was using non-files
for testing and they didn't back up the same, not
surprisingly.
This moves the 'backup' method to the :flat filetype
and then only backs up if the filetype supports it.
Signed-off-by: Luke Kanies <luke@madstop.com>
Diffstat (limited to 'lib/puppet/provider')
| -rwxr-xr-x | lib/puppet/provider/parsedfile.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/puppet/provider/parsedfile.rb b/lib/puppet/provider/parsedfile.rb index 45eae57ff..40e172785 100755 --- a/lib/puppet/provider/parsedfile.rb +++ b/lib/puppet/provider/parsedfile.rb @@ -81,6 +81,8 @@ class Puppet::Provider::ParsedFile < Puppet::Provider # Make sure our file is backed up, but only back it up once per transaction. # We cheat and rely on the fact that @records is created on each prefetch. def self.backup_target(target) + return nil unless target_object(target).respond_to?(:backup) + unless defined?(@backup_stats) @backup_stats = {} end |
