summaryrefslogtreecommitdiffstats
path: root/daemon
Commit message (Collapse)AuthorAgeFilesLines
* Added 'equal' command to compare files.Richard W.M. Jones2009-05-012-0/+75
|
* Generated code for ping-daemon command.Richard W.M. Jones2009-05-012-0/+17
|
* Added ping-daemon command.Richard W.M. Jones2009-05-012-0/+33
|
* Generated code for dmesg command.Richard W.M. Jones2009-05-012-0/+20
|
* Added dmesg command.Richard W.M. Jones2009-05-012-0/+47
|
* Generated code for drop-caches command.Richard W.M. Jones2009-05-012-0/+28
|
* Added drop-caches command.Richard W.M. Jones2009-05-012-0/+53
|
* Generated code for cp, cp-a and mv commands.Richard W.M. Jones2009-05-012-0/+90
|
* Add cp, cp-a and mv commands.Richard W.M. Jones2009-05-012-0/+95
|
* Generated code for grub-install command.Richard Jones2009-04-302-0/+30
|
* Add grub-install command.Richard Jones2009-04-302-0/+59
|
* Added 'zero' command to wipe partition tables and superblocks.Richard Jones2009-04-304-0/+81
|
* Correct the path to /sbin/fsck.Richard Jones2009-04-301-1/+1
|
* Add generated code for 'fsck' command.Richard Jones2009-04-304-4/+96
|
* Added 'fsck' command.Richard Jones2009-04-302-0/+46
|
* Bind-mount /dev, /proc and /sys into chroot when running commands.Richard Jones2009-04-301-0/+20
|
* Fix umount_all command so it unmounts filesystems in the correct order.Richard Jones2009-04-301-8/+68
|
* build: don't tell "make clean" to remove my '~' backup filesJim Meyering2009-04-301-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Hi Rich, automake's policy on what to remove via "make clean" is reasonable: if running build rules creates it, then "make clean" can and should remove it. However, even if build rules happen to create backup files, please remove only the specific ones they can create, not all of the ones in a directory. Just in case someone relies on those and expect them to hang around... >From 1e8be391ac17b4ddcf9671e8413d2660844e6993 Mon Sep 17 00:00:00 2001 From: Jim Meyering <meyering@redhat.com> Date: Thu, 30 Apr 2009 15:47:52 +0200 Subject: [PATCH] build: don't tell "make clean" to remove my '~' backup files * Makefile.am (CLEANFILES): Don't remove '~' backup files. * daemon/Makefile.am: Ditto. * examples/Makefile.am: Ditto. * fish/Makefile.am: Ditto. * images/Makefile.am: Ditto. * inspector/Makefile.am: Ditto. * java/Makefile.am: Ditto. * ocaml/Makefile.am: Ditto. * ocaml/examples/Makefile.am: Ditto. * perl/Makefile.am: Ditto. * python/Makefile.am: Ditto. * ruby/Makefile.am: Ditto. * src/Makefile.am: Ditto.
* Fix unchecked malloc (Jim Meyering).Richard Jones2009-04-301-0/+4
|
* Fix unchecked malloc & realloc in 'commandv' func (Jim Meyering).Richard Jones2009-04-301-4/+15
|
* Check return value from realloc call (Jim Meyering).Richard Jones2009-04-301-15/+40
|
* Rename tune2fs.c -> ext2.cRichard Jones2009-04-302-1/+1
|
* Generated code for ext2 UUID and label functions.Richard Jones2009-04-272-0/+122
|
* Functions for getting and setting the ext2 UUID and label.Richard Jones2009-04-271-0/+119
|
* Use ferror to check for error conditions in pipe.Richard Jones2009-04-261-2/+2
|
* Carefully check return values from xwrite.Richard Jones2009-04-261-4/+18
|
* Generated code for lvremove, vgremove, pvremove.Richard Jones2009-04-252-0/+84
|
* Implement lvremove, vgremove, pvremove.Richard Jones2009-04-251-0/+54
|
* catsprintf leaks, use open_memstream instead.Richard W.M. Jones2009-04-232-18/+16
|
* Remove the 'debug mem' command, it's never going to work.Richard W.M. Jones2009-04-231-30/+0
|
* Implement 'debug sh' and 'debug fds' commands.Richard W.M. Jones2009-04-231-15/+101
|
* Implement extensible strings with catprintf.Richard W.M. Jones2009-04-231-0/+8
|
* Use AC_GNU_SOURCE in daemon. Don't need _GNU_SOURCE in C files any more.Richard W.M. Jones2009-04-234-5/+4
|
* Generated code for debug command.Richard W.M. Jones2009-04-232-0/+35
|
* Add outline of 'debug' command.Richard W.M. Jones2009-04-233-0/+145
|
* Generated code for new mount_* commands.Richard Jones2009-04-222-0/+96
|
* Add mount_ro, mount_options, mount_vfs. Fix small bug in OCaml generator.Richard Jones2009-04-221-4/+29
|
* Added tar-in, tar-out, tgz-in, tgz-out commands.Richard Jones2009-04-204-0/+392
|
* Various fixes to the daemon:Richard Jones2009-04-202-4/+62
| | | | | | - make sure SIGPIPE doesn't kill us - warn not to use macros in FileIn functions - add shell_quote function
* Some fixes to daemon upload command:Richard Jones2009-04-201-3/+12
| | | | | - don't leak the file descriptor along error paths - can't use those macros in FileIn functions
* Fix file descriptor leak in daemon.Richard Jones2009-04-202-0/+21
|
* Generated code for 'checksum' command.Richard Jones2009-04-202-0/+33
|
* Add 'checksum' command.Richard Jones2009-04-202-0/+86
|
* Implement upload and download commands.Richard Jones2009-04-205-43/+353
|
* Use GUESTFS_LAUNCH_FLAG in the daemon, and use correct uint32_t.Richard Jones2009-04-191-2/+2
|
* Implement NEED_ROOT_OR_IS_DEVICE macro.Richard Jones2009-04-192-1/+14
|
* Implement _send_sync, _send_file_sync and _receive_file_sync.Richard Jones2009-04-191-0/+7
|
* Begin to add the upload and download commands.Richard Jones2009-04-182-0/+56
|
* Separate out the high-level API actions.Richard Jones2009-04-181-1/+1
| | | | | | - Split out the high-level API actions so that they are in a separate file, and use the defined guestfs C API, instead of fiddling around with internal structures.
* Rewrite of main loop impl, start of FileIn/FileOut support.Richard Jones2009-04-183-5/+61
|