You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
514 B
23 lines
514 B
10 years ago
|
"""EasyEngine package installation using apt-get module."""
|
||
|
|
||
|
Class EEAptGet():
|
||
|
"""Generice apt-get intialisation"""
|
||
|
def __init__():
|
||
|
# TODO Common method of apt-get module
|
||
|
pass
|
||
|
|
||
|
"""Installation of packages"""
|
||
|
def install():
|
||
|
# TODO Method to install packages
|
||
|
pass
|
||
|
|
||
|
"""Removal of packages"""
|
||
|
def remove():
|
||
|
# TODO Method to remove packages
|
||
|
pass
|
||
|
|
||
|
"""Purging of packages"""
|
||
|
def purge():
|
||
|
# TODO Method to purge packages
|
||
|
pass
|