Skip to content
Snippets Groups Projects
Commit c90ce4c1 authored by Florent Thiery's avatar Florent Thiery
Browse files

remove legacy argument

parent bcde36df
No related branches found
No related tags found
No related merge requests found
...@@ -13,7 +13,7 @@ if not os.path.exists('/etc/postfix'): ...@@ -13,7 +13,7 @@ if not os.path.exists('/etc/postfix'):
sys.exit(1) sys.exit(1)
else: else:
# check that postfix listens the port 25 correctly # check that postfix listens the port 25 correctly
status, out = subprocess.getstatusoutput('netstat -pant | grep master | grep 127.0.0.1:25', shell=True) status, out = subprocess.getstatusoutput('netstat -pant | grep master | grep 127.0.0.1:25')
if status != 0: if status != 0:
print('The port 25 is not listened by any process.') print('The port 25 is not listened by any process.')
sys.exit(1) sys.exit(1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment