Displaying 3 results from an estimated 3 matches for "sysrestor".
Did you mean:
  sysrestore
  
2020 May 04
0
[PATCH 4/4] sysprep: add FreeIPA offline unenrollment (RHBZ#1789592)
....guestfs) root side_effects =
+  let typ = g#inspect_get_type root in
+  if typ = "linux" then (
+    (* Simple paths with no side effects. *)
+    let paths = [ "/etc/ipa/ca.crt";
+                  "/etc/ipa/default.conf";
+                  "/var/lib/ipa-client/sysrestore/*";
+                  "/var/lib/ipa-client/pki/*" ] in
+    let paths = List.concat (List.map Array.to_list (List.map g#glob_expand paths)) in
+    List.iter (
+      fun filename ->
+        try g#rm filename with G.Error _ -> ()
+    ) paths;
+
+    (* Certificates in the s...
2020 May 07
3
[PATCH v2 0/2] add FreeIPA offline unenrollment (RHBZ#1789592)
This patch series adds a new virt-sysprep operation to offline unenroll
a guest from FreeIPA. It does so by removing some configuration files
and certificates.
Changes from v1:
- the other patches were pushed, as unrelated and approved
- created a new kerberos-hostkeytab operation
Pino Toscano (2):
  sysprep: add IPA offline unenrollment (RHBZ#1789592)
  sysprep: add Kerberos keytab file removal
2020 May 04
7
[PATCH 0/4] sysprep: add FreeIPA offline unenrollment (RHBZ#1789592)
This patch series adds a new virt-sysprep operation to offline unenroll
a guest from FreeIPA. It does so by removing some configuration files
and certificates.
It requires a change in libguestfs-common before the series is applied.
Pino Toscano (4):
  customize: port do_run to run_in_guest_command
  sysprep: add a update_system_ca_store side effect
  sysprep: ca-certificates: request system CA