Comment 10 for bug 1310926

Revision history for this message
Sergey Vasilenko (xenolog) wrote :

HOTFIX (CENTOS):
# vim /usr/lib/python2.6/site-packages/neutron/agent/linux/ip_lib.py
line #469:
    def exists(self, name):
        output = self._parent._execute('o', 'netns', ['list'])

Should be changed to:
    def exists(self, name):
        output = self._parent._execute('o', 'netns', ['list'], root_helper=self._parent.root_helper)