summaryrefslogtreecommitdiffstats
path: root/backend.py
diff options
context:
space:
mode:
authorPaul Nasrat <pnasrat@redhat.com>2005-08-24 19:10:30 +0000
committerPaul Nasrat <pnasrat@redhat.com>2005-08-24 19:10:30 +0000
commitb3a636f84f28a77a0a52a6a88e1d5758ec9843f9 (patch)
treec931392b1392e2f72017fd3963428ded41dfbab4 /backend.py
parent7e0de54d4874f4cc1f2cf8631c6eb7c02bb21257 (diff)
downloadanaconda-b3a636f84f28a77a0a52a6a88e1d5758ec9843f9.tar.gz
anaconda-b3a636f84f28a77a0a52a6a88e1d5758ec9843f9.tar.xz
anaconda-b3a636f84f28a77a0a52a6a88e1d5758ec9843f9.zip
Stub backend
Diffstat (limited to 'backend.py')
-rw-r--r--backend.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/backend.py b/backend.py
new file mode 100644
index 000000000..9a2049a81
--- /dev/null
+++ b/backend.py
@@ -0,0 +1,32 @@
+#
+# backend.py: Interface for installation backends
+#
+# Paul Nasrat <pnasrat@redhat.com>
+# Copyright (c) 2005 Red Hat, Inc.
+#
+# This software may be freely redistributed under the terms of the GNU
+# library public license.
+#
+# You should have received a copy of the GNU Library Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
+
+import logging
+log = logging.getLogger("anaconda")
+
+class AnacondaBackend:
+ def __init__(self):
+ pass
+
+ def doPreSelection(self):
+ pass
+
+ def doPostSelection(self):
+ pass
+
+ def doPreInstall(self):
+ pass
+
+ def doPostInstall(self):
+ pass