components/openstack/cinder/files/cinder-volume-setup
branchs11-update
changeset 3178 77584387a894
parent 3050 b32b8b41ab85
child 3196 4c06db2d9388
--- a/components/openstack/cinder/files/cinder-volume-setup	Wed Jun 11 05:34:04 2014 -0700
+++ b/components/openstack/cinder/files/cinder-volume-setup	Fri Jun 13 09:10:23 2014 -0700
@@ -28,11 +28,19 @@
     order to set it up properly for Cinder to use.
 
     """
-    parser = ConfigParser.ConfigParser()
-    parser.read("/etc/cinder/cinder.conf")
+    cinder_conf = "/etc/cinder/cinder.conf"
+    if not os.path.exists(cinder_conf):
+        print "%s doesn't exist" % cinder_conf
+        return smf_include.SMF_EXIT_ERR_CONFIG
 
-    # set up the top-level dataset with the proper permissions for cinder
-    top_ds = parser.get("DEFAULT", "zfs_volume_base")
+    parser = ConfigParser.ConfigParser()
+    parser.read(cinder_conf)
+
+    # retrieve the top-level dataset or just get the default (rpool/cinder)
+    try:
+        top_ds = parser.get("DEFAULT", "zfs_volume_base")
+    except ConfigParser.NoOptionError:
+        top_ds = "rpool/cinder"
 
     # look to see if the dataset exists
     cmd = ["/usr/sbin/zfs", "list", top_ds]