check_sys/audit/system/plugins/postfix/postfix.py

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