mirror of
https://github.com/SELinuxProject/setools
synced 2025-04-01 22:58:12 +00:00
Boolean: change state to a property.
This commit is contained in:
parent
82b021a5a4
commit
ff1fb21012
@ -53,7 +53,7 @@ class BoolQuery(compquery.ComponentQuery):
|
||||
if self.name and not self._match_name(boolean):
|
||||
continue
|
||||
|
||||
if self.match_default and boolean.state() != self.default:
|
||||
if self.match_default and boolean.state != self.default:
|
||||
continue
|
||||
|
||||
yield boolean
|
||||
|
@ -49,13 +49,14 @@ class Boolean(symbol.PolicySymbol):
|
||||
|
||||
"""A Boolean."""
|
||||
|
||||
@property
|
||||
def state(self):
|
||||
"""The default state of the Boolean."""
|
||||
return bool(self.qpol_symbol.state(self.policy))
|
||||
|
||||
def statement(self):
|
||||
"""The policy statement."""
|
||||
return "bool {0} {1};".format(self, str(self.state()).lower())
|
||||
return "bool {0} {1};".format(self, str(self.state).lower())
|
||||
|
||||
|
||||
class ConditionalExpr(symbol.PolicySymbol):
|
||||
|
Loading…
Reference in New Issue
Block a user