Displaying 16 results from an estimated 16 matches for "mount_config".
2009 Jul 13
1
[PATCH node] Adds vlan support to auto-installations for the node. bz#511056
...ata_size local_boot standalone overcommit ip_address ip_netmask ip_gateway ipv6 dns ntp vlan syslog_server syslog_port collectd_server collectd_port bootparams hostname firstboot"
# mount /config unless firstboot is forced
if [ "$firstboot" != "1" ]; then
mount_config
--
1.6.2.5
2009 Nov 16
3
[PATCH] Add support for vendor hooks during ovirt-early start()
...cal_boot standalone overcommit ip_address ip_netmask ip_gateway ipv6 dns ntp vlan ssh_pwauth syslog_server syslog_port collectd_server collectd_port bootparams hostname firstboot"
# mount /config unless firstboot is forced
if [ "$firstboot" != "1" ]; then
mount_config
@@ -434,6 +453,10 @@ start() {
fi
fi
+ if [ -n "${vendor_script}" ]; then
+ vendor_post_hook
+ fi
+
return 0
}
diff --git a/scripts/ovirt-vendor.sample b/scripts/ovirt-vendor.sample
new file mode 100644
index 0000000..7a57ddd
--- /dev/null
+++ b/script...
2011 Jul 21
0
[PATCH] add netconsole autoinstall parameter
...ame rhn_password rhn_profile rhn_activationkey rhn_proxy rhn_proxyuser rhn_proxypassword runtime_mode kdump_nfs iscsi_name snmp_password install netconsole_server netconsole_port"
# mount /config unless firstboot is forced
if [ "$firstboot" != "1" ]; then
mount_config
--
1.7.5.4
2009 Jul 21
0
[PATCH node] Adds a new kernel cmdline argument to toggle SSH password auth.
...size local_boot standalone overcommit ip_address ip_netmask ip_gateway ipv6 dns ntp vlan ssh syslog_server syslog_port collectd_server collectd_port bootparams hostname firstboot"
# mount /config unless firstboot is forced
if [ "$firstboot" != "1" ]; then
mount_config
--
1.6.2.5
2009 Jul 22
1
Updated patch...
This patch obsoletes the previous, renaming the karg to ssh_pwauth.
2009 Jul 22
1
Changes the ssh karg to ssh_pwauth
This patch obsoletes the previous one with feedback from pmyers at redhat.com.
2009 Nov 16
1
Refactored upgrade patch...
This patch includes feedback from apevec to remain backward compatible
with the previous karg, ovirt_local_boot.
2009 Nov 13
1
[PATCH] Provides an explicit upgrade path for an installed node.
...upgrade standalone overcommit ip_address ip_netmask ip_gateway ipv6 dns ntp vlan ssh_pwauth syslog_server syslog_port collectd_server collectd_port bootparams hostname firstboot"
# mount /config unless firstboot is forced
if [ "$firstboot" != "1" ]; then
mount_config
@@ -426,7 +426,7 @@ start() {
ovirt_store_config \
/etc/sysconfig/network-scripts/ifcfg-* \
$BONDING_MODCONF_FILE
- if [ $local_boot = 1 ]; then
+ if [ $upgrade = 1 ]; then
# local disk installation for managed mo...
2009 Nov 16
2
Resend...
Resending the refactored patch: I realized after I emailed it that it
referenced the wrong bugzilla.
2010 Jul 21
0
[PATCH] RFC: Encrypted swap support
...dalone overcommit ip_address ip_netmask ip_gateway ipv6 dns ntp vlan ssh_pwauth syslog_server syslog_port collectd_server collectd_port bootparams hostname firstboot runtime_mode"
# mount /config unless firstboot is forced
if [ "$firstboot" != "1" ]; then
mount_config
@@ -610,6 +642,9 @@ start_ovirt_early () {
done
augtool $tmpaug
. $OVIRT_DEFAULTS
+ if [ "$firstboot" != "1" -a -f /etc/ovirt-crypttab ]; then
+ mount_crypt_swap
+ fi
if [ -f /etc/sysconfig/network ]; then
. /etc/sysconfig/network...
2009 May 20
2
[PATCH node] Adds support for a core dump partition to the node.
...vol_data_size local_boot standalone overcommit ip_address ip_netmask ip_gateway ipv6 dns ntp syslog_server syslog_port collectd_server collectd_port bootparams hostname firstboot"
# mount /config unless firstboot is forced
if [ "$firstboot" != "1" ]; then
mount_config
--
1.6.0.6
2010 Oct 22
0
[PATCH node] First draft of replacing some of the ovirt-config-* scripts with python equivalents.
...firstboot menu already shown?
+# state is stored in persistent config partition
+def is_firstboot():
+ if not OVIRT_VARS.has_key("OVIRT_FIRSTBOOT") or OVIRT_VARS["OVIRT_FIRSTBOOT"] == 1:
+ return True
+ else:
+ return False
+
+def disable_firstboot():
+ if mount_config:
+ firstboot = augeas.Augeas(root="/")
+ firstboot.set("/files/etc/defaults/ovirt/OVIRT_FIRSTBOOT", "0")
+ firstboot.set("/files/etc/defaults/ovirt/OVIRT_INIT", '""')
+ firstboot.set("/files/etc/defaults/OVIR...
2009 Dec 08
1
[PATCH node] iscsi remote root basework This lays most of the groundwork for iscsi installation and configuration. At this time configuring iscsi is disabled due to multiple issues with dependent pieces.
..."Review") do_review ; break ;;
"Commit Changes And Quit") do_confirm ; break ;;
diff --git a/scripts/ovirt-functions b/scripts/ovirt-functions
index 7cf8613..7cd9c81 100644
--- a/scripts/ovirt-functions
+++ b/scripts/ovirt-functions
@@ -304,6 +304,14 @@ mount_config() {
fi
}
+mount_boot() {
+
+ if grep -q " /boot " /etc/mtab; then
+ return 0
+ fi
+ mkdir -p /boot
+ mount /dev/disk/by-label/Boot /boot
+}
# stop any service which keeps /var/log busy
# keep the list of services
unmount_logging_services() {
--
1.6.5.2
2009 Oct 01
1
Repost of Patch 6/6 for ovirt-node
All other patches from the sequence remain unchanged. Repost of patch 6 based on comments from Joey to follow.
Mike
2010 Jul 21
0
[PATCH] RFC: Advanced Storage Configuration
...dalone overcommit ip_address ip_netmask ip_gateway ipv6 dns ntp vlan ssh_pwauth syslog_server syslog_port collectd_server collectd_port bootparams hostname firstboot runtime_mode"
# mount /config unless firstboot is forced
if [ "$firstboot" != "1" ]; then
mount_config
diff --git a/scripts/ovirt-functions b/scripts/ovirt-functions
index 7b95ea8..5c574f7 100644
--- a/scripts/ovirt-functions
+++ b/scripts/ovirt-functions
@@ -430,6 +430,23 @@ mount_data() {
fi
}
+mount_data2() {
+ if grep -q " /data2 ext3" /proc/mounts; then
+ return 0
+...
2009 Sep 26
10
Adding handling for Multipath storage devices
The following patches introduce support for multipath and cciss devices to the ovirt-node and node-image. Comments are appreciated.
These patches assume that the 3 patches (2 node, 1 node-image) from Joey are all incorporated.
Mike