mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-22 07:03:38 +00:00
75 lines
2.5 KiB
OCaml
75 lines
2.5 KiB
OCaml
(* virt-sysprep
|
|
* Copyright (C) 2013 Fujitsu Ltd.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*)
|
|
|
|
open Common_utils
|
|
open Sysprep_operation
|
|
open Common_gettext.Gettext
|
|
|
|
module G = Guestfs
|
|
|
|
let paths = ref []
|
|
let add_paths ?(scrub = false) path = paths := (scrub, path) :: !paths
|
|
|
|
let path_perform g root side_effects =
|
|
let paths = List.rev !paths in
|
|
if paths <> [] then (
|
|
List.iter (
|
|
function
|
|
| false, glob -> Array.iter g#rm_rf (g#glob_expand glob)
|
|
| true, path -> g#scrub_file path
|
|
) paths
|
|
)
|
|
|
|
let op = {
|
|
defaults with
|
|
name = "delete";
|
|
enabled_by_default = true;
|
|
heading = s_"Delete or scrub specified files or directories";
|
|
pod_description = Some (s_"\
|
|
Use the I<--delete> option to specify a path to remove.
|
|
|
|
You can use shell glob characters in the specified path; note that such
|
|
metacharacters might require proper escape. For example:
|
|
|
|
virt-sysprep --delete '/var/log/*.log'
|
|
|
|
An alternative option, I<--scrub>, can be used to scrub files. This
|
|
only works for files (not directories) and cannot use globs.
|
|
|
|
You can use both options as many times as you want.");
|
|
extra_args = [
|
|
{ extra_argspec = ("--delete", Arg.String add_paths, s_"path" ^ " " ^ s_"File or directory to be removed on guest");
|
|
extra_pod_argval = Some "PATHNAME";
|
|
extra_pod_description = s_"\
|
|
Delete (recursively) the specified C<PATHNAME> in the guest.";
|
|
};
|
|
|
|
{ extra_argspec = ("--scrub", Arg.String (add_paths ~scrub:true), s_"path" ^ " " ^ s_"File to be scrubbed");
|
|
extra_pod_argval = Some "PATHNAME";
|
|
extra_pod_description = s_"\
|
|
Scrub (aggressively overwrite then remove) the specified
|
|
file called C<PATHNAME> in the guest. Only single files can
|
|
be specified using this argument.";
|
|
}
|
|
];
|
|
|
|
perform_on_filesystems = Some path_perform;
|
|
}
|
|
|
|
let () = register_operation op
|