summaryrefslogtreecommitdiffstats
path: root/lib/puppet
diff options
context:
space:
mode:
authorballman <ballman@980ebf18-57e1-0310-9a29-db15c13687c0>2007-05-09 12:31:10 +0000
committerballman <ballman@980ebf18-57e1-0310-9a29-db15c13687c0>2007-05-09 12:31:10 +0000
commitb0374d8059a4e54e38d59ba169819de7b2547063 (patch)
tree82076243905623ebad3e1e032dd3f51d5da83462 /lib/puppet
parent5b44159c1a7e0cfa2cb1afcd32b387ac8deeb8a9 (diff)
downloadpuppet-b0374d8059a4e54e38d59ba169819de7b2547063.tar.gz
puppet-b0374d8059a4e54e38d59ba169819de7b2547063.tar.xz
puppet-b0374d8059a4e54e38d59ba169819de7b2547063.zip
Removed calls to is.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@2489 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet')
-rw-r--r--lib/puppet/provider/zone/solaris.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/puppet/provider/zone/solaris.rb b/lib/puppet/provider/zone/solaris.rb
index e22192c22..d92a774c1 100644
--- a/lib/puppet/provider/zone/solaris.rb
+++ b/lib/puppet/provider/zone/solaris.rb
@@ -92,7 +92,6 @@ set zonepath=%s
current = nil # reset it
when /^(\S+):\s*(.+)$/:
hash[$1.intern] = $2
- #self.is = [$1.intern, $2]
when /^\s+(\S+):\s*(.+)$/:
if name
unless hash.include? name
@@ -114,18 +113,12 @@ set zonepath=%s
return hash
end
- # FIXARB: Not sure what this one is doing. It is not setting @is for the
- # if case.
def retrieve
if hash = statushash()
setstatus(hash)
# Now retrieve the configuration itself and set appropriately.
getconfig()
- else
- @properties.each do |name, property|
- property.is = :absent
- end
end
end