From b9702673ac57f4c8751304b691803fd53376b058 Mon Sep 17 00:00:00 2001 From: gau1991 Date: Thu, 4 Dec 2014 14:01:56 +0530 Subject: [PATCH] Added apt-get core function structure --- ee/core/aptget.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 ee/core/aptget.py diff --git a/ee/core/aptget.py b/ee/core/aptget.py new file mode 100644 index 00000000..aa64c8c0 --- /dev/null +++ b/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