daemon: blkid cache is at a different location on Debian.
[libguestfs.git] / daemon / blkid.c
index a619730..2885a8f 100644 (file)
@@ -38,7 +38,8 @@ get_blkid_tag (const char *device, const char *tag)
    * supposed to do this, but (a) it doesn't work and (b) that option
    * is not supported in RHEL 5.
    */
-  unlink ("/etc/blkid/blkid.tab");
+  unlink ("/etc/blkid/blkid.tab"); /* Red Hat, Fedora */
+  unlink ("/etc/blkid.tab"); /* Debian */
 
   r = command (&out, &err,
                "blkid", "-o", "value", "-s", tag, device, NULL);
@@ -64,3 +65,15 @@ do_vfs_type (const char *device)
 {
   return get_blkid_tag (device, "TYPE");
 }
+
+char *
+do_vfs_label (const char *device)
+{
+  return get_blkid_tag (device, "LABEL");
+}
+
+char *
+do_vfs_uuid (const char *device)
+{
+  return get_blkid_tag (device, "UUID");
+}