10 lines
189 B
Python
10 lines
189 B
Python
#!/usr/bin/env python3
|
|
|
|
def postfix() -> list:
|
|
postfix = list()
|
|
postfix.append({
|
|
'directive': "inet_interfaces",
|
|
'value': "loopback-only",
|
|
})
|
|
return postfix
|