From 7ccba17a383686bb94c3c17eacbeaa988022c22d Mon Sep 17 00:00:00 2001 From: Bahtiar `kalkin-` Gadimov Date: Thu, 16 Jun 2016 14:45:45 +0200 Subject: [PATCH] qubes.vm.__init__ Replace TODOs with SEE: #1815 --- qubes/vm/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/qubes/vm/__init__.py b/qubes/vm/__init__.py index 6653c96a..7ccf4c9f 100644 --- a/qubes/vm/__init__.py +++ b/qubes/vm/__init__.py @@ -195,7 +195,7 @@ class BaseVM(qubes.PropertyHolder): for node in xml.xpath('./tags/tag'): self.tags[node.get('name')] = node.text - # TODO: firewall, policy + # SEE:1815 firewall, policy. # check if properties are appropriate all_names = set(prop.__name__ for prop in self.property_list()) @@ -277,8 +277,8 @@ class BaseVM(qubes.PropertyHolder): # # firewall - # TODO rewrite it, have node under - # and possibly integrate with generic policy framework + # SEE:1815 rewrite it, have node under + # and possibly integrate with generic policy framework. # def write_firewall_conf(self, conf): @@ -350,7 +350,7 @@ class BaseVM(qubes.PropertyHolder): subprocess.call(["sudo", "systemctl", "start", "qubes-reload-firewall@%s.timer" % self.name]) - # XXX any better idea? some arguments? + # SEE:1815 any better idea? some arguments? self.fire_event('firewall-changed') return True