Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def get_augeas(self):
return Augeas(modules=[{
'name': 'Hosts',
'lens': 'Hosts.lns',
'incl': [
'/etc/hosts',
]
def get_augeas(self):
aug = Augeas(modules=[{
'name': 'Interfaces',
'lens': 'Interfaces.lns',
'incl': [
self.path,
self.path + '.d/*',
]
}])
aug.load()
return aug
def get_augeas(self):
aug = Augeas(modules=[{
'name': 'Shellvars',
'lens': 'Shellvars.lns',
'incl': [
self.path,
]
}])
aug.load()
return aug
def get_augeas(self, iface):
aug = Augeas(modules=[{
'name': 'Shellvars',
'lens': 'Shellvars.lns',
'incl': [
os.path.join(self.path, 'ifcfg-' + iface),
]
}])
aug.load()
return aug
def get_augeas(self):
return Augeas(
modules=[{
'name': 'Supervisor',
'lens': 'Supervisor.lns',
'incl': [
self.path,
]
}],
loadpath=PluginManager.get(aj.context).get_content_path('supervisor', ''),
)