Browse Source

Added apt-get core function structure

bugfixes
gau1991 10 years ago
parent
commit
b9702673ac
  1. 22
      ee/core/aptget.py

22
ee/core/aptget.py

@ -0,0 +1,22 @@
"""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
Loading…
Cancel
Save