8 changed files with 72 additions and 1 deletions
@ -0,0 +1,9 @@ |
|||||
|
"""EasyEngine package check module.""" |
||||
|
|
||||
|
|
||||
|
class EEPackageCheck(): |
||||
|
|
||||
|
"""Intialization for package check""" |
||||
|
def ___init__(): |
||||
|
# TODO Intialization for package check |
||||
|
pass |
@ -0,0 +1,17 @@ |
|||||
|
"""EasyEngine domain check module.""" |
||||
|
class EEDomainCheck(): |
||||
|
|
||||
|
"""Intialization domain check""" |
||||
|
def ___init__(): |
||||
|
# TODO Intialization for domain check |
||||
|
pass |
||||
|
|
||||
|
"""Check for proper domain""" |
||||
|
def isdomain(): |
||||
|
# TODO method for doamin check |
||||
|
pass |
||||
|
|
||||
|
"""Check for proper Fully qualified domain""" |
||||
|
def isfqdn(): |
||||
|
# TODO method for FQDN check |
||||
|
pass |
@ -0,0 +1,23 @@ |
|||||
|
"""EasyEngine Nginx, PHP, MySQL info module.""" |
||||
|
|
||||
|
|
||||
|
class EEInfo(): |
||||
|
"""Intialization for info""" |
||||
|
def ___init__(): |
||||
|
# TODO common method for info |
||||
|
pass |
||||
|
|
||||
|
"""Method to disaply info for PHP""" |
||||
|
def infophp(): |
||||
|
# TODO info for php |
||||
|
pass |
||||
|
|
||||
|
"""Method to disaply info for Nginx""" |
||||
|
def infonginx(): |
||||
|
# TODO info for Nginx |
||||
|
pass |
||||
|
|
||||
|
"""Method to disaply info for MySQL""" |
||||
|
def infomysql(): |
||||
|
# TODO info for MySQL |
||||
|
pass |
@ -0,0 +1,8 @@ |
|||||
|
"""EasyEngine set permission module""" |
||||
|
|
||||
|
|
||||
|
class EESetPermission(): |
||||
|
"""Intialization set permission""" |
||||
|
def ___init__(): |
||||
|
# TODO method for set permission |
||||
|
pass |
@ -1,6 +1,8 @@ |
|||||
"""EasyEngine service start/stop/restart module.""" |
"""EasyEngine service start/stop/restart module.""" |
||||
class EEService(): |
|
||||
|
|
||||
|
|
||||
|
class EEService(): |
||||
"""Intialization for service""" |
"""Intialization for service""" |
||||
def ___init__(): |
def ___init__(): |
||||
# TODO method for services |
# TODO method for services |
||||
|
pass |
||||
|
@ -0,0 +1,7 @@ |
|||||
|
"""EasyEngine swap creation module.""" |
||||
|
|
||||
|
Class EESwapCreation(): |
||||
|
"""Generice swap creation intialisation""" |
||||
|
def __init__(): |
||||
|
# TODO method for swap creation |
||||
|
pass |
Loading…
Reference in new issue