Files
libguestfs/sysprep/sysprep_operation_rh_subscription_manager.ml
Pino Toscano 14b8e67f0b sysprep, get-kernel: explicit the Guestfs parameter
Help the OCaml compiler by expliciting Guestfs.guestfs as type for 'g'
in some functions.
2016-02-04 10:22:18 +01:00

43 lines
1.4 KiB
OCaml

(* virt-sysprep
* Copyright (C) 2014 Red Hat Inc.
*
* 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 Sysprep_operation
open Common_gettext.Gettext
module G = Guestfs
let rh_subscription_manager_perform (g : Guestfs.guestfs) root side_effects =
let typ = g#inspect_get_type root in
let distro = g#inspect_get_distro root in
match typ, distro with
| "linux", "rhel" ->
Array.iter g#rm_rf (g#glob_expand "/etc/pki/consumer/*");
Array.iter g#rm_rf (g#glob_expand "/etc/pki/entitlement/*")
| _ -> ()
let op = {
defaults with
name = "rh-subscription-manager";
enabled_by_default = true;
heading = s_"Remove the RH subscription manager files";
perform_on_filesystems = Some rh_subscription_manager_perform;
}
let () = register_operation op