# File lib/puppet/provider/selboolean/getsetsebool.rb, line 7
 7:   def value
 8:     self.debug "Retrieving value of selboolean #{@resource[:name]}"
 9: 
10:     status = getsebool(@resource[:name])
11: 
12:     if status =~ / off$/
13:       return :off
14:     elsif status =~ / on$/ then
15:       return :on
16:     else
17:       status.chomp!
18:       raise Puppet::Error, "Invalid response '#{status}' returned from getsebool"
19:     end
20:   end