aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristopher Harvey <chris@basementcode.com>2010-08-04 13:06:12 -0400
committerChristopher Harvey <chris@basementcode.com>2010-08-04 13:06:12 -0400
commit303ab8cf76a9b3158e7833d0032f9214bd6404ce (patch)
tree9345c5d8dcc382d0c8ed602141a19f3e193914e9 /src
parentAdded scripts that check fstab file systems and block devices (diff)
downloadventoo-303ab8cf76a9b3158e7833d0032f9214bd6404ce.tar.gz
ventoo-303ab8cf76a9b3158e7833d0032f9214bd6404ce.tar.bz2
ventoo-303ab8cf76a9b3158e7833d0032f9214bd6404ce.zip
Added moduleExists to VentooModule
Diffstat (limited to 'src')
-rw-r--r--src/ventoo/VentooModule.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ventoo/VentooModule.py b/src/ventoo/VentooModule.py
index 86ec9c5..817a146 100644
--- a/src/ventoo/VentooModule.py
+++ b/src/ventoo/VentooModule.py
@@ -24,6 +24,13 @@ from lxml import etree
import augeas_utils
import search_paths
+def moduleExists(moduleName):
+ for p in search_paths.modules:
+ thisPath = osp.join(p,moduleName,"main.xml")
+ if osp.isfile(thisPath):
+ return True
+ return False
+
class VentooModule:
def __init__(self, moduleName):
#see if we can find the module files