Displaying 5 results from an estimated 5 matches for "net_hostname".
Did you mean:
get_hostname
2011 Aug 03
0
[PATCH] update valid_hostname regex checks
...arn = 1
if warn == 1:
self.screen.setColor("BUTTON", "black", "red")
@@ -506,11 +506,12 @@ class NodeConfigScreen():
self.reset_screen_colors()
def valid_hostname_callback(self):
- if not is_valid_hostname(self.net_hostname.value()):
- self.screen.setColor("BUTTON", "black", "red")
- self.screen.setColor("ACTBUTTON", "blue", "white")
- ButtonChoiceWindow(self.screen, "Configuration Check", "Invalid Hostnam...
2012 Sep 03
2
[PATCH] sysprep: remove hostname from ifcfg-*
Remove hostname from network interface configuration.
Signed-off-by: Wanlong Gao <gaowanlong at cn.fujitsu.com>
---
po/POTFILES-ml | 1 +
sysprep/Makefile.am | 1 +
sysprep/sysprep_operation_net_hostname.ml | 58 +++++++++++++++++++++++++++++++
3 files changed, 60 insertions(+)
create mode 100644 sysprep/sysprep_operation_net_hostname.ml
diff --git a/po/POTFILES-ml b/po/POTFILES-ml
index 76043a0..c9422fb 100644
--- a/po/POTFILES-ml
+++ b/po/POTFILES-ml
@@ -27,6 +27,7 @@ sysprep/sysprep_operation_...
2013 Sep 06
0
[PATCH 2/5] sysprep: remove the NFS settings
...+++++++++++++++
2 files changed, 44 insertions(+)
create mode 100644 sysprep/sysprep_operation_nfs_setting.ml
diff --git a/sysprep/Makefile.am b/sysprep/Makefile.am
index b89345a..9894baf 100644
--- a/sysprep/Makefile.am
+++ b/sysprep/Makefile.am
@@ -51,6 +51,7 @@ operations = \
mail_spool \
net_hostname \
net_hwaddr \
+ nfs_setting \
pacct_log \
package_manager_cache \
pam_data \
diff --git a/sysprep/sysprep_operation_nfs_setting.ml b/sysprep/sysprep_operation_nfs_setting.ml
new file mode 100644
index 0000000..6d74cba
--- /dev/null
+++ b/sysprep/sysprep_operation_nfs_setting.ml
@@ -0,0 +1,...
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
2014 Jan 21
2
virt-builder & virt-sysprep: Avoiding SELinux relabelling
...virt-builder
reconfiguration:
- creates /.unconfigured (brand new)
hostname:
- creates various files depending on distro (eg /etc/hostname)
- files probably exist already, but might not
- shared with virt-builder
machine_id:
- creates empty /etc/machine-id
- probably this file exists already
net_hostname:
- modifies /etc/sysconfig/network-scripts/ifcfg-*
net_hwaddr:
- modifies /etc/sysconfig/network-scripts/ifcfg-*
pacct_log:
- touches /var/account/pacct or /var/log/account/pacct
password:
- edits /etc/shadow directly
- shared with virt-builder
random_seed:
- creates seed file
- seed file ma...