search for: dhcp_server_state

Displaying 8 results from an estimated 8 matches for "dhcp_server_state".

2012 Mar 04
1
[RFC PATCH] virt-sysprep:add ipconfig for preparation
...stname_param="$2" shift 2;; + --ipconfig) + ipconfig_param="$2" + shift 2;; --list-operations) enable=list shift;; @@ -135,6 +138,7 @@ if [ -z "$enable" ]; then dhcp_client_state=yes dhcp_server_state=yes hostname=yes + ipconfig=yes logfiles=yes mail_spool=yes net_hwaddr=yes @@ -150,6 +154,7 @@ elif [ "$enable" = "list" ]; then echo "dhcp-client-state" echo "dhcp-server-state" echo "hostname" + echo "...
2012 Mar 14
3
[PATCH V3] virt-sysprep:add ipconfig for preparation
...stname_param="$2" shift 2;; + --ipconfig) + ipconfig_param="$2" + shift 2;; --list-operations) enable=list shift;; @@ -135,6 +138,7 @@ if [ -z "$enable" ]; then dhcp_client_state=yes dhcp_server_state=yes hostname=yes + ipconfig=yes logfiles=yes mail_spool=yes net_hwaddr=yes @@ -150,6 +154,7 @@ elif [ "$enable" = "list" ]; then echo "dhcp-client-state" echo "dhcp-server-state" echo "hostname" + echo "...
2012 Mar 09
1
[PATCH V2] virt-sysprep:add ipconfig for preparation
...stname_param="$2" shift 2;; + --ipconfig) + ipconfig_param="$2" + shift 2;; --list-operations) enable=list shift;; @@ -135,6 +138,7 @@ if [ -z "$enable" ]; then dhcp_client_state=yes dhcp_server_state=yes hostname=yes + ipconfig=yes logfiles=yes mail_spool=yes net_hwaddr=yes @@ -150,6 +154,7 @@ elif [ "$enable" = "list" ]; then echo "dhcp-client-state" echo "dhcp-server-state" echo "hostname" + echo "...
2012 Aug 08
1
[PATCH] sysprep: remove the process accounting log files
...sysprep/sysprep_operation_puppet_data_log.ml diff --git a/sysprep/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...
2012 Nov 21
1
[PATCH] sysprep: remove crash data generated by kexec-tools
...operation_crash_data.ml diff --git a/sysprep/Makefile.am b/sysprep/Makefile.am index a747929..fafb929 100644 --- a/sysprep/Makefile.am +++ b/sysprep/Makefile.am @@ -43,6 +43,7 @@ operations = \ bash_history \ blkid_tab \ ca_certificates \ + crash_data \ cron_spool \ dhcp_client_state \ dhcp_server_state \ diff --git a/sysprep/sysprep_operation_crash_data.ml b/sysprep/sysprep_operation_crash_data.ml new file mode 100644 index 0000000..2150e52 --- /dev/null +++ b/sysprep/sysprep_operation_crash_data.ml @@ -0,0 +1,47 @@ +(* virt-sysprep + * Copyright (C) 2012 Fujitsu Limited. + * + * This program is...
2013 Sep 05
1
[PATCH V2] sysprep: remove firewall rules
...+++++++++++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 sysprep/sysprep_operation_firewall_rules.ml diff --git a/sysprep/Makefile.am b/sysprep/Makefile.am index ec6c2bc..fcd17fc 100644 --- a/sysprep/Makefile.am +++ b/sysprep/Makefile.am @@ -40,6 +40,7 @@ operations = \ dhcp_server_state \ dovecot_data \ flag_reconfiguration \ + firewall_rules \ firstboot \ fs_uuids \ hostname \ diff --git a/sysprep/sysprep_operation_firewall_rules.ml b/sysprep/sysprep_operation_firewall_rules.ml new file mode 100644 index 0000000..598b2e1 --- /dev/null +++ b/sysprep/sysprep_operation_fir...
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
2012 Mar 31
3
[PATCH (incomplete)] Rewrite virt-sysprep in OCaml.
This patch is incomplete but it illustrates the idea. virt-sysprep is rewritten as a modular tool in OCaml. Only the 'utmp' and 'hostname' operations are implemented at the moment. Rich.