Displaying 9 results from an estimated 9 matches for "kerberos_data".
2013 Sep 05
6
[PATCH 1/5] sysprep: remove /var/log/audit/audit.log
audit.log is already included in /var/log/audit/*.
Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
---
sysprep/sysprep_operation_logfiles.ml | 1 -
1 file changed, 1 deletion(-)
diff --git a/sysprep/sysprep_operation_logfiles.ml b/sysprep/sysprep_operation_logfiles.ml
index 842b855..cdfe8fc 100644
--- a/sysprep/sysprep_operation_logfiles.ml
+++
2012 Aug 08
1
[PATCH] sysprep: remove the process accounting log files
...p/Makefile.am b/sysprep/Makefile.am
index c52a65f..50c6e11 100644
--- a/sysprep/Makefile.am
+++ b/sysprep/Makefile.am
@@ -42,8 +42,8 @@ operations = \
abrt_data bash_history blkid_tab ca_certificates cron_spool \
dhcp_client_state dhcp_server_state dovecot_data flag_reconfiguration \
hostname kerberos_data lvm_uuids logfiles machine_id mail_spool \
- net_hwaddr package_manager_cache pam_data puppet_data_log random_seed \
- rhn_systemid samba_db_log script smolt_uuid ssh_hostkeys \
+ net_hwaddr pacct_log package_manager_cache pam_data puppet_data_log \
+ random_seed rhn_systemid samba_db_log script sm...
2020 May 07
0
[PATCH v2 2/2] sysprep: add Kerberos keytab file removal
...ged, 39 insertions(+)
create mode 100644 sysprep/sysprep_operation_kerberos_hostkeytab.ml
diff --git a/sysprep/Makefile.am b/sysprep/Makefile.am
index 43137ce65..95cc7e358 100644
--- a/sysprep/Makefile.am
+++ b/sysprep/Makefile.am
@@ -44,6 +44,7 @@ operations = \
firewall_rules \
fs_uuids \
kerberos_data \
+ kerberos_hostkeytab \
lvm_uuids \
logfiles \
machine_id \
diff --git a/sysprep/sysprep_operation_kerberos_hostkeytab.ml b/sysprep/sysprep_operation_kerberos_hostkeytab.ml
new file mode 100644
index 000000000..cb3023353
--- /dev/null
+++ b/sysprep/sysprep_operation_kerberos_hostkeytab.ml
@...
2013 Sep 05
0
[PATCH 5/5] sysprep: remove iptables rules
...6 insertions(+)
create mode 100644 sysprep/sysprep_operation_iptables.ml
diff --git a/sysprep/Makefile.am b/sysprep/Makefile.am
index ec6c2bc..3da99c1 100644
--- a/sysprep/Makefile.am
+++ b/sysprep/Makefile.am
@@ -43,6 +43,7 @@ operations = \
firstboot \
fs_uuids \
hostname \
+ iptables \
kerberos_data \
lvm_uuids \
logfiles \
diff --git a/sysprep/sysprep_operation_iptables.ml b/sysprep/sysprep_operation_iptables.ml
new file mode 100644
index 0000000..e36a005
--- /dev/null
+++ b/sysprep/sysprep_operation_iptables.ml
@@ -0,0 +1,45 @@
+(* virt-sysprep
+ * Copyright (C) 2013 Fujitsu Limited.
+ *...
2013 Sep 06
0
[PATCH 3/5] sysprep: remove the custom kdump configurations
...ions(+)
create mode 100644 sysprep/sysprep_operation_kdump_config.ml
diff --git a/sysprep/Makefile.am b/sysprep/Makefile.am
index 9894baf..eb372aa 100644
--- a/sysprep/Makefile.am
+++ b/sysprep/Makefile.am
@@ -44,6 +44,7 @@ operations = \
firstboot \
fs_uuids \
hostname \
+ kdump_config \
kerberos_data \
lvm_uuids \
logfiles \
diff --git a/sysprep/sysprep_operation_kdump_config.ml b/sysprep/sysprep_operation_kdump_config.ml
new file mode 100644
index 0000000..358f97d
--- /dev/null
+++ b/sysprep/sysprep_operation_kdump_config.ml
@@ -0,0 +1,44 @@
+(* virt-sysprep
+ * Copyright (C) 2013 Fujitsu...
2013 Sep 05
2
Re: [PATCH 5/5] sysprep: remove iptables rules
...ration_iptables.ml
>
> diff --git a/sysprep/Makefile.am b/sysprep/Makefile.am
> index ec6c2bc..3da99c1 100644
> --- a/sysprep/Makefile.am
> +++ b/sysprep/Makefile.am
> @@ -43,6 +43,7 @@ operations = \
> firstboot \
> fs_uuids \
> hostname \
> + iptables \
> kerberos_data \
> lvm_uuids \
> logfiles \
> diff --git a/sysprep/sysprep_operation_iptables.ml b/sysprep/sysprep_operation_iptables.ml
> new file mode 100644
> index 0000000..e36a005
> --- /dev/null
> +++ b/sysprep/sysprep_operation_iptables.ml
> @@ -0,0 +1,45 @@
> +(* virt-syspre...
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
2012 Aug 16
5
[PATCH 0/4] Add customization capabilities to virt-sysprep
In the TODO file there's a discussion of perhaps writing a new
'virt-customize' tool. I think it's probably better (or at any rate,
easier) to just add this functionality into virt-sysprep. That is
what this small series of patches aims to achieve.
Note these are not very well tested at the moment.
The first patch adds a generic and useful '--firstboot' flag. The
2013 Sep 06
7
[PATCH 1/5] sysprep: remove tmp files
This removes tmp files under /tmp and /var/tmp.
Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
---
sysprep/Makefile.am | 1 +
sysprep/sysprep_operation_tmp_files.ml | 52 ++++++++++++++++++++++++++++++++++
2 files changed, 53 insertions(+)
create mode 100644 sysprep/sysprep_operation_tmp_files.ml
diff --git a/sysprep/Makefile.am b/sysprep/Makefile.am
index