summaryrefslogtreecommitdiffstats
path: root/src/lib/Client/Redhat.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Client/Redhat.py')
-rw-r--r--src/lib/Client/Redhat.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/lib/Client/Redhat.py b/src/lib/Client/Redhat.py
index e69de29bb..0c4905624 100644
--- a/src/lib/Client/Redhat.py
+++ b/src/lib/Client/Redhat.py
@@ -0,0 +1,25 @@
+# This is the bcfg2 support for redhat
+# $Id: $
+
+from Toolset import Toolset
+
+def Detect():
+ # until the code works
+ return False
+
+class Redhat(Toolset):
+ '''This class implelements support for rpm packages and standard chkconfig services'''
+
+ def VerifyService(self, entry):
+ return False
+
+ def VerifyPackage(self, entry):
+ return False
+
+ def InstallService(self, entry):
+ return False
+
+ def InstallPackage(self, entry):
+ return False
+
+