summaryrefslogtreecommitdiffstats
path: root/installmethod.py
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2000-05-10 23:47:02 +0000
committerErik Troan <ewt@redhat.com>2000-05-10 23:47:02 +0000
commite8e51bea1d1b1c7b451bbcdbcd46ea4b6648d4a6 (patch)
tree4827cbc51fe1ef1f3155792902de997342326bff /installmethod.py
parentc17a74a82e71857fdb02d8d90df10b39fa4060d1 (diff)
downloadanaconda-e8e51bea1d1b1c7b451bbcdbcd46ea4b6648d4a6.tar.gz
anaconda-e8e51bea1d1b1c7b451bbcdbcd46ea4b6648d4a6.tar.xz
anaconda-e8e51bea1d1b1c7b451bbcdbcd46ea4b6648d4a6.zip
added proper inheritance for install methods
Diffstat (limited to 'installmethod.py')
-rw-r--r--installmethod.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/installmethod.py b/installmethod.py
new file mode 100644
index 000000000..2a832ab7b
--- /dev/null
+++ b/installmethod.py
@@ -0,0 +1,22 @@
+class InstallMethod:
+
+ def readComps(self, hdlist):
+ pass
+
+ def getFilename(self, h):
+ pass
+
+ def readHeaders(self):
+ pass
+
+ def systemMounted(self, fstab, mntPoint):
+ pass
+
+ def filesDone(self):
+ pass
+
+ def unlinkFilename(self, fullName):
+ pass
+
+ def __init__(self):
+ pass