RHEL 5 thinks squashfs is HFS+ filesystem, unless we specify the type explicitly.
[libguestfs.git] / TODO
diff --git a/TODO b/TODO
index 6a89409..16d6880 100644 (file)
--- a/TODO
+++ b/TODO
@@ -14,11 +14,11 @@ http://sourceforge.net/project/showfiles.php?group_id=121684&package_id=150116
 
 ----------------------------------------------------------------------
 
-BufferIn and BufferOut should turn into <char *, int> and simple
-strings in other languages that can handle 8 bit clean strings.
+BufferIn should turn into <char *, int> and simple strings in other
+languages that can handle 8 bit clean strings.
+
 Limit on transfers would still be 2MB for these types.
  - then implement write-file properly
- - and implement read-file
 
 ----------------------------------------------------------------------
 
@@ -127,8 +127,6 @@ Extra commands / functionality:
     some sort of alloc/fallocate/posix_fallocate call to create empty space
     realpath
     trunc[ate??]
-    getfattr (also useful because gives us access to NTFS datastreams)
-    setfattr
 
   ext2 properties:
     chattr
@@ -178,3 +176,25 @@ Other initrd-* commands, such as:
 
 initrd-extract
 initrd-replace
+
+----------------------------------------------------------------------
+
+Some easy non-Augeas methods to edit configuration files.
+I'm thinking:
+
+  replace /etc/file key value
+
+which would look in /etc/file for any instances of
+
+  key=...
+  key ...
+  key:...
+
+and replace them with
+
+  key=value
+  key value
+  key:value
+
+That would solve about 50% of reconfiguration needs, and for the
+rest you'd use Augeas, 'download'+'upload' or 'edit'.