Skip to content
Snippets Groups Projects
Commit 0d6dba1a authored by Per Cederqvist's avatar Per Cederqvist
Browse files

Recognize messages on the form "nfs: server foo OK".

parent 8c1c70f3
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ import sys
import re
bad_re = re.compile("(NFS|nfs:) server (?P<server>[^ ]*) not responding")
good_re = re.compile("NFS server (?P<server>[^ ]*) (ok|OK)")
good_re = re.compile("(NFS|nfs:) server (?P<server>[^ ]*) (ok|OK)")
time_re = re.compile("((?P<year>[1-9][0-9]{3})-"
"(?P<mon>[0-9]{2})-"
"(?P<day>[0-9]{2}) "
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment