Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Cecylia Bocovich
gettor
Commits
7b1dbc34
Commit
7b1dbc34
authored
Oct 14, 2019
by
Hiro
🏄
Browse files
Fix gettor check script
parent
e4278339
Changes
1
Show whitespace changes
Inline
Side-by-side
scripts/check_service
View file @
7b1dbc34
...
...
@@ -100,14 +100,18 @@ if __name__ == "__main__":
else
:
password
=
"yourPassword"
status_file
=
open
(
STATUS_FILE
,
'w'
)
status_file
=
open
(
STATUS_FILE
,
'r'
)
message
=
status_file
.
read
()
status_file
.
close
()
try
:
status
,
message
=
send_email_from_gmail
(
password
)
except
Exception
as
e
:
status
=
UNKNOWN
message
=
repr
(
e
)
status_file
.
write
(
"UNKNOWN: %s"
%
message
)
status_file
=
open
(
STATUS_FILE
,
'w'
)
status_file
.
write
(
"UNKNOWN
\n
3: %s"
%
message
)
status_file
.
close
()
time
.
sleep
(
600
)
...
...
@@ -119,6 +123,7 @@ if __name__ == "__main__":
status
=
CRITICAL
message
=
repr
(
e
)
finally
:
status_file
=
open
(
STATUS_FILE
,
'w'
)
if
status
==
OK
:
status_file
.
write
(
"OK
\n
0: %s"
%
message
)
elif
status
==
WARNING
:
...
...
@@ -129,4 +134,6 @@ if __name__ == "__main__":
status_file
.
write
(
"UNKNOWN
\n
3: %s"
%
message
)
status
=
UNKNOWN
status_file
.
close
()
sys
.
exit
(
status
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment