2024-04-17 16:19:11 -04:00
|
|
|
#!/bin/python3
|
|
|
|
|
2024-04-17 18:14:17 -04:00
|
|
|
import argparse
|
|
|
|
import subprocess
|
|
|
|
import color_io
|
|
|
|
|
|
|
|
parser = argparse.ArgumentParser(prog='SystemD Service Generator', description='SystemD Service Unit File Generator', epilog='Meow')
|
|
|
|
|
|
|
|
parser.add_argument("-i", "--install", nargs='?', const="/etc/systemd/system/", default=None)
|
|
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|