(* Augeas OCaml bindings * Copyright (C) 2008 Red Hat Inc., Richard W.M. Jones * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * * $Id: test_augeas.ml,v 1.1 2008/05/06 10:48:20 rjones Exp $ *) let () = let aug = let loadpath = Some "/usr/share/augeas/lenses" in let flags = [ Augeas.AugSaveBackup ] in Augeas.create "test_root" loadpath flags in (* Print all files. *) let files = Augeas.matches aug "/files/*" in List.iter print_endline files; (* Print all Augeas-metainfo. *) let augs = Augeas.matches aug "/augeas/*" in List.iter print_endline augs; (* Run the garbage collector to check for internal errors. *) Gc.compact ()