#!/usr/bin/python3 import argparse import getpass import os import subprocess # # only needed to find the library directory import docing from pathlib import Path #import server # import sys # from nitpo import Nitpo from deploy import Deploy desc = 'deploy via socket using root files' parser = argparse.ArgumentParser(description=desc) # parser.add_argument('-s', action='store_true', help='stop only') args = parser.parse_args() d = Deploy() d.say_apache() d.say_systemd()