search for: ovirt_dn

Displaying 7 results from an estimated 7 matches for "ovirt_dn".

Did you mean: ovirt_dns
2009 Jul 08
1
Final follow up patch to add warning for NTP...
Now, rather than displaying yet another warning, the NTP configuration just requires that the user select a NIC to configure first. That act alone provides the single warning to the user that they'll be changing their network configuration.
2009 Jun 29
2
[PATCH node] Change DNS setup to match NTP. rhbz#508677
...+206,18 @@ function configure_dns local IF_CONFIG= if [ -z "$AUTO" ]; then - while true; do + for dns in first second; do printf "\n" - echo "Enter up to two DNS servers separated by commas:" - if [ -n "$OVIRT_DNS" ]; then - echo "Press Enter for defaults: ($OVIRT_DNS)" + read -ep "Please enter the ${dns} DNS server: " + if [[ -z "${DNS}" ]] && [[ -z "${REPLY}" ]]; then + printf "\nAborted...\n&quot...
2009 May 27
4
[PATCH node] REPOST Joey's and Darryl's ovirt-config-* patches
This is a repost of patches for ovirt-config-* ACK to all. Pushed.
2009 Jun 25
1
[PATCH node] Rerunning network config resets all network config. bz#507393
...RS; do + printf "set /files/etc/ntp.conf/server[${offset}] ${server}\n" >> $ntpconf + offset=$(echo "$offset+1" | bc) done - cp -f $BACKUP $NTP_CONFIG_FILE fi } @@ -317,7 +329,9 @@ else "$DNS") configure_dns "$OVIRT_DNS"; break ;; "$NTP") configure_ntp "$OVIRT_NTP"; break ;; "$Abort") rm -f "${WORKDIR}"/augtool-*; exit 99;; - "$Save") break 2;; + "$Save") + save_ntp_c...
2010 Oct 25
0
[PATCH node] add network.py script
...self.IF_CONFIG = self.IF_CONFIG.split("\n") + self.BR_CONFIG = self.BR_CONFIG.split("\n") + try: + self.VL_CONFIG = self_VL_CONFIG.split("\n") + except: + pass + def configure_dns(self): + if OVIRT_VARS.has_key("OVIRT_DNS"): + DNS=OVIRT_VARS["OVIRT_DNS"] + IF_FILENAME="%s/augtool-br%s" % (self.WORKDIR, CONFIGURED_NIC) + IF_ROOT="%s-br%s" % (self.IFCONFIG_FILE_ROOT, self.CONFIGURED_NIC) + if not DNS is None: + try: +...
2009 May 22
0
[PATCH node] Restricts network configuration to a single NIC.
...tion on this system.\n" + printf "***** WARNING *****\n" select NIC in $NICS "DNS" "NTP" "Save & Exit" do @@ -269,6 +285,7 @@ else case "$NIC" in "DNS") configure_dns "$OVIRT_DNS"; break ;; "NTP") configure_ntp "$OVIRT_NTP"; break ;; + "Abort") rm -f "${WORKDIR}"/augtool-*; exit 99;; "Save & Exit") break 2;; *) if [[ -n "${NIC}" ]] &...
2009 Jul 07
1
Obsoletes previous patch
This patch obsoletes the previously submitted patch. It adds a warning message to the user when they select to change the NTP settings.