'make distclean' now cleans more files.
-# $Id: Make.rules,v 1.2 2007/08/08 08:34:42 rjones Exp $ -*- Makefile -*-
# This file is included by Makefiles in subdirectories.
# Common rules for building OCaml objects.
-# $Id: Makefile.in,v 1.7 2007/08/23 09:36:04 rjones Exp $
-
PACKAGE = @PACKAGE_NAME@
VERSION = @PACKAGE_VERSION@
rm -f mlvirtmanager/mlvirtmanager
rm -f virt-top/virt-top
-distclean:
- rm -f config.h config.log config.status configure META
+distclean: clean
+ rm -f config.h config.log config.status configure
rm -rf autom4te.cache
+ rm -f META
+ rm -f libvirt/libvirt_version.ml
rm -f Makefile
+ rm -f libvirt/Makefile
+ rm -f examples/Makefile
+ rm -f mlvirsh/Makefile
+ rm -f mlvirtmanager/Makefile
+ rm -f virt-top/Makefile
+ rm -f virt-df/Makefile
# Developer documentation (in html/ subdirectory).
-$Id: README,v 1.11 2007/08/23 09:36:04 rjones Exp $
-
ocaml-libvirt
----------------------------------------------------------------------
-$Id: TODO.libvirt,v 1.1 2007/08/29 15:48:06 rjones Exp $
-
Turn VIR_ERR_NO_DOMAIN and NO_NETWORK errors into Not_found exceptions.
-$Id: TODO.virt-top,v 1.2 2007/08/30 13:52:40 rjones Exp $
-
This is a list of bugs & tasks for virt-top.
----------------------------------------------------------------------
In top this is called "Irix/Solaris mode" :-)
*** 4 [jmh] Build out the stats collected by the --csv <filename.csv> option.
+ [DONE 0.3.2.9]
Suggested being able to give a selection of VMs to monitor from the
command line. Also, being able to monitor just particular subsystems
pCPU. I will ask upstream whether this stat is available through Xen,
and if so put in place the infrastructure to monitor it.
-*** 9 [jmh asked for] Configuration file or environment variable
+*** 9 [jmh asked for] Configuration file or environment variable [DONE 0.3.2.8]
Thinking about maybe this is something we could controly via a
.virt-top-init file or an environment variable ? The same could also
-# $Id: Makefile.in,v 1.1 2007/08/21 12:33:40 rjones Exp $
-
OCAMLCPACKAGES := -package extlib,unix -I ../libvirt
OCAMLCFLAGS := -g
OCAMLCLIBS := -linkpkg
Usage: list_domains [URI]
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
http://libvirt.org/
- $Id: list_domains.ml,v 1.1 2007/08/06 10:16:53 rjones Exp $
*)
open Printf
-# $Id: Makefile.in,v 1.2 2007/08/21 13:24:08 rjones Exp $
-
CFLAGS := @CFLAGS@ \
-I.. \
-I$(shell ocamlc -where) \
(* OCaml bindings for libvirt.
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
http://libvirt.org/
- $Id: libvirt.ml,v 1.2 2007/08/21 13:24:08 rjones Exp $
*)
type uuid = string
(** OCaml bindings for libvirt.
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
http://libvirt.org/
- $Id: libvirt.mli,v 1.3 2007/08/22 10:04:07 rjones Exp $
*)
type uuid = string
/* OCaml bindings for libvirt.
* (C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
* http://libvirt.org/
- * $Id: libvirt_c.c,v 1.6 2007/08/30 13:16:57 rjones Exp $
*/
#include "config.h"
(* Helper module containing the version of the OCaml bindings.
- * $Id: libvirt_version.ml.in,v 1.2 2007/08/21 12:33:40 rjones Exp $
*)
let package = "@PACKAGE_NAME@"
(** OCaml bindings for libvirt.
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
http://libvirt.org/
- $Id: libvirt_version.mli,v 1.2 2007/08/21 14:36:15 rjones Exp $
*)
val package : string
-# $Id: Makefile.in,v 1.2 2007/08/21 14:24:38 rjones Exp $
-
INSTALL := @INSTALL@
prefix = @prefix@
(* virsh-like command line tool.
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
http://libvirt.org/
- $Id: mlvirsh.ml,v 1.2 2007/08/21 13:24:09 rjones Exp $
*)
open ExtString
-# $Id: Makefile.in,v 1.2 2007/08/21 14:24:38 rjones Exp $
-
INSTALL := @INSTALL@
prefix = @prefix@
(* virt-manager-like graphical management tool.
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
http://libvirt.org/
- $Id: mlvirtmanager.ml,v 1.1 2007/08/06 10:16:53 rjones Exp $
*)
open Printf
(* virt-manager-like graphical management tool.
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
http://libvirt.org/
- $Id: mlvirtmanager_connections.ml,v 1.1 2007/08/06 10:16:53 rjones Exp $
*)
open Printf
(* virt-manager-like graphical management tool.
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
http://libvirt.org/
- $Id: mlvirtmanager_connections.mli,v 1.1 2007/08/06 10:16:53 rjones Exp $
Handle connections and the complicated GtkTreeView which
displays the connections / domains.
(* virt-manager-like graphical management tool.
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
http://libvirt.org/
- $Id: mlvirtmanager_domain_ops.ml,v 1.1 2007/08/06 10:16:53 rjones Exp $
Domain operations buttons.
*)
(* virt-manager-like graphical management tool.
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
http://libvirt.org/
- $Id: mlvirtmanager_domain_ops.mli,v 1.1 2007/08/06 10:16:53 rjones Exp $
Domain operations buttons.
*)
(* virt-manager-like graphical management tool.
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
http://libvirt.org/
- $Id: mlvirtmanager_helpers.ml,v 1.1 2007/08/06 10:16:53 rjones Exp $
*)
module C = Libvirt.Connect
(* virt-manager-like graphical management tool.
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
http://libvirt.org/
- $Id: mlvirtmanager_helpers.mli,v 1.1 2007/08/06 10:16:53 rjones Exp $
Helper functions.
*)
(* virt-manager-like graphical management tool.
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
http://libvirt.org/
- $Id: mlvirtmanager_mainwindow.ml,v 1.1 2007/08/06 10:16:53 rjones Exp $
*)
open Printf
(* virt-manager-like graphical management tool.
(C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
http://libvirt.org/
- $Id: mlvirtmanager_mainwindow.mli,v 1.1 2007/08/06 10:16:53 rjones Exp $
Make the main window.
*)
-# $Id: Makefile.in,v 1.6 2007/08/23 11:09:19 rjones Exp $
-
PACKAGE := @PACKAGE_NAME@
VERSION := @PACKAGE_VERSION@
-$Id$
-
virt-df is a 'df' tool for printing out the used and available disk
space in all active and inactive domains. Without this tool you would
need to log in to each domain individually or set up monitoring.
(* 'df' command for virtual domains.
- * $Id$
*)
open Printf
(* 'df' command for virtual domains.
- * $Id$
*
* Support for EXT2/EXT3 filesystems.
*)
(* 'df' command for virtual domains.
- * $Id$
*
* Support for Linux swap partitions.
*)
(* 'df' command for virtual domains.
- * $Id$
*
* Support for LVM2 PVs.
*)
(* 'df' command for virtual domains.
- * $Id$
*)
let () = Virt_df.main ()
-# $Id: Makefile.in,v 1.6 2007/08/23 11:09:19 rjones Exp $
-
PACKAGE := @PACKAGE_NAME@
VERSION := @PACKAGE_VERSION@
-$Id: README,v 1.1 2007/08/30 13:52:40 rjones Exp $
-
The code is structured into these files:
virt_top_utils.ml
(* 'top'-like tool for libvirt domains.
- * $Id: virt_top.ml,v 1.5 2007/08/30 13:52:40 rjones Exp $
*)
open Printf
(* 'top'-like tool for libvirt domains.
- * $Id: virt_top_csv.ml,v 1.1 2007/08/23 11:09:19 rjones Exp $
*
* This file contains all code which requires CSV support.
*)
(* 'top'-like tool for libvirt domains.
- * $Id: virt_top_main.ml,v 1.2 2007/08/30 13:16:57 rjones Exp $
*
* Just contains the main function.
*)
(* 'top'-like tool for libvirt domains.
- * $Id: virt_top.ml,v 1.5 2007/08/30 13:52:40 rjones Exp $
*)
let (//) = Filename.concat
(* 'top'-like tool for libvirt domains.
- * $Id: virt_top_xml.ml,v 1.1 2007/08/23 09:36:04 rjones Exp $
*
* This file contains all code which requires xml-light.
*)