diff options
author | Jesse Wolfe <jes5199@gmail.com> | 2011-03-24 17:51:59 -0700 |
---|---|---|
committer | Jesse Wolfe <jes5199@gmail.com> | 2011-03-25 15:20:39 -0700 |
commit | daaa048a8d8829ad509b4a456826cc8a33cf6444 (patch) | |
tree | 817971bd3c1a7e8383bc3243833b8d1367e768dc /lib/puppet/util | |
parent | c7f6e5ee743c061c020521651360bba240ae4519 (diff) | |
download | puppet-daaa048a8d8829ad509b4a456826cc8a33cf6444.tar.gz puppet-daaa048a8d8829ad509b4a456826cc8a33cf6444.tar.xz puppet-daaa048a8d8829ad509b4a456826cc8a33cf6444.zip |
(#5477) Allow watch_file to watch non-existent files, especially site.pp
The watch_file mechanism would refuse to monitor paths to files that
didn't exist. This patch makes it possible to watch a file that hasn't
been created yet, so when it is created, you manifests will get
reparsed.
Paired-With: Max Martin <max@puppetlabs.com>
Reviewed-By: Jacob Helwig <jacob@puppetlabs.com>
Diffstat (limited to 'lib/puppet/util')
-rwxr-xr-x | lib/puppet/util/loadedfile.rb | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/puppet/util/loadedfile.rb b/lib/puppet/util/loadedfile.rb index 735dba459..d2f5d0923 100755 --- a/lib/puppet/util/loadedfile.rb +++ b/lib/puppet/util/loadedfile.rb @@ -34,10 +34,6 @@ module Puppet # Create the file. Must be passed the file path. def initialize(file) @file = file - unless FileTest.exists?(@file) - raise Puppet::NoSuchFile, - "Can not use a non-existent file for parsing" - end @statted = 0 @stamp = nil @tstamp = stamp @@ -50,7 +46,7 @@ module Puppet @statted = Time.now.to_i begin @stamp = File.stat(@file).ctime - rescue Errno::ENOENT + rescue Errno::ENOENT, Errno::ENOTDIR @stamp = Time.now end end |