Author: justi9
Date: 2008-12-10 11:47:54 -0500 (Wed, 10 Dec 2008)
New Revision: 2961
Modified:
mgmt/trunk/cumin/bin/cumin-instance-init
Log:
Add the resources-wooly dir to the work of the instance initialization script
Modified: mgmt/trunk/cumin/bin/cumin-instance-init
===================================================================
--- mgmt/trunk/cumin/bin/cumin-instance-init 2008-12-10 16:42:59 UTC (rev 2960)
+++ mgmt/trunk/cumin/bin/cumin-instance-init 2008-12-10 16:47:54 UTC (rev 2961)
@@ -30,6 +30,7 @@
map = ((join(sep, "etc", "cumin"), join(home, "etc")),
(join(sep, "var", "log", "cumin"), join(home,
"log")),
+ (join(prefix, "share", "wooly", "resources"),
join(home, "resources-wooly")),
(join(prefix, "share", "cumin", "resources"),
join(home, "resources")),
(join(prefix, "share", "mint", "sql"),
join(home, "sql")))
elif type == "local":
@@ -40,6 +41,7 @@
map = ((join(prefix, "etc", "cumin"), join(home,
"etc")),
(join(sep, "var", "local", "log",
"cumin"), join(home, "log")),
+ (join(prefix, "share", "wooly", "resources"),
join(home, "resources-wooly")),
(join(prefix, "share", "cumin", "resources"),
join(home, "resources")),
(join(prefix, "share", "mint", "sql"),
join(home, "sql")))
elif type == "prefix":
@@ -54,6 +56,7 @@
map = ((join(prefix, "etc", "cumin"), join(home,
"etc")),
(join(prefix, "var", "log", "cumin"), join(home,
"log")),
+ (join(prefix, "share", "wooly", "resources"),
join(home, "resources-wooly")),
(join(prefix, "share", "cumin", "resources"),
join(home, "resources")),
(join(prefix, "share", "mint", "sql"),
join(home, "sql")))
else: