8 lines
194 B
Python
8 lines
194 B
Python
#!/usr/bin/env python3
|
|
|
|
def postfix() -> dict:
|
|
postfix = dict()
|
|
postfix['regexp'] = "inet_interfaces = all"
|
|
postfix['replace'] = "inet_interfaces = loopback-only"
|
|
return postfix
|