Commit a38e5ed6 authored by Mayoro Diagne's avatar Mayoro Diagne

adding configuration script for phpbms

parent 886206b7
# -*- coding: utf-8 -*-
import sys
import os
import shutil
def setup(args):
mysql_port, mysql_host, mysql_user, mysql_password, mysql_database, base_url, htdocs = args
install_php = os.path.join(htdocs, "install")
shutil.rmtree(install_php, 1)
if __name__ == '__main__':
setup(sys.argv[1:])
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment