File: msg_fail_on.py

package info (click to toggle)
apache2 2.4.66-5
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 59,500 kB
  • sloc: ansic: 212,331; python: 13,830; perl: 11,307; sh: 7,258; php: 1,320; javascript: 1,314; awk: 749; makefile: 715; lex: 374; yacc: 161; xml: 2
file content (28 lines) | stat: -rwxr-xr-x 641 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python3

import os
import sys


def main(argv):
    if len(argv) > 3:
        log = argv[1]
        fail_on = argv[2]
        cmd = argv[3]
        domain = argv[4]
        if 'renewing' != cmd:
            f1 = open(log, 'a+')
            f1.write(f"{[argv[0], log, cmd, domain]}\n")
            f1.close()
        if cmd.startswith(fail_on):
            sys.stderr.write(f"failing on: {cmd}\n")
            sys.exit(1)
        sys.stderr.write("done, all fine.\n")
        sys.exit(0)
    else:
        sys.stderr.write("%s without arguments" % (argv[0]))
        sys.exit(7)


if __name__ == "__main__":
    main(sys.argv)