summaryrefslogtreecommitdiffstats
path: root/daemon/blkid.c
Commit message (Collapse)AuthorAgeFilesLines
* daemon: Kill blkid cache to improve reliability of blkid commands.Richard Jones2010-06-021-0/+7
| | | | | | By killing the cache file, we make blkid work in situations such as a just-created filesystem. (cherry picked from commit 21c42e9fabf6cea3d564e338a314479ef120502a)
* daemon: Generalize the implementation of vfs-type.Richard Jones2010-06-021-3/+9
| | | | | Note that there is no change to the semantics of the code. (cherry picked from commit 85c71f8fff3e80f549342bf995b686ba7303c2b4)
* appliance: Set $PATH instead of hard-coding paths to binaries everywhere.Richard Jones2010-03-261-1/+1
| | | | | | Change the appliance so PATH includes common directories. Thus we don't need to hard-code paths to binaries (eg. "/sbin/fdisk") everywhere.
* daemon: Don't need to prefix error messages with the command name.Richard Jones2010-02-121-1/+1
| | | | | | | | | | | | | | | | | | | | The RPC stubs already prefix the command name to error messages. The daemon doesn't have to do this. As a (small) benefit this also makes the daemon slightly smaller. Code in the daemon such as: if (argv[0] == NULL) { reply_with_error ("passed an empty list"); return NULL; } now results in error messages like this: ><fs> command "" libguestfs: error: command: passed an empty list (whereas previously you would have seen ..command: command:..)
* New API: vfs_type - get the Linux VFS driver for a mounted device.Richard Jones2009-10-261-0/+53