search for: ntproot

Displaying 6 results from an estimated 6 matches for "ntproot".

Did you mean: nthroot
2009 Jun 25
1
[PATCH node] Rerunning network config resets all network config. bz#507393
...'^server .* # added by ovirt-config-network' < $NTP_CONFIG_FILE > $BACKUP - for server in $NTP; do - echo "server $server # added by ovirt-config-network" >> $BACKUP +function save_ntp_configuration +{ + local ntpconf="$WORKDIR/augtool-ntp" + local ntproot="/files/etc/ntp.conf" + + printf "\ +rm ${ntproot}\n\n +set ${ntproot}/driftfile /var/lib/ntp/drift\n\ +set ${ntproot}/includefile /etc/ntp/crypto/pw\n\ +set ${ntproot}/keys /etc/ntp/keys\n\ +save\n" > $ntpconf + + if [ -n "$NTPSERVERS" ]; then + offset...
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.
2010 Oct 25
0
[PATCH node] add network.py script
...") % (IF_ROOT, DNS2) + except: + pass + + def configure_ntp(self): + if OVIRT_VARS.has_key("OVIRT_NTP"): + NTPSERVERS=OVIRT_NTP + else: + NTPSERVERS="" + + def save_ntp_configuration(self): + ntproot = "/files/etc/ntp.conf" + ntpconf = "rm %s\n" % ntproot + ntpconf += "set %s/driftfile /var/lib/ntp/drift\n" % ntproot + ntpconf += "set %s/includefile /etc/ntp/crypto/pw\n" % ntproot + ntpconf += "set %s/keys /etc/ntp/keys&qu...
2010 May 13
1
Non-functional replacement...
This patch just includes the repo name in the subject.
2010 May 13
0
[PATCH] Replace the HAL calls with udev/systool calls.
...python-devel BuildRequires: python-setuptools Requires: libvirt >= 0.6.3 diff --git a/scripts/ovirt-config-networking b/scripts/ovirt-config-networking index 4d412ac..1cfc2db 100755 --- a/scripts/ovirt-config-networking +++ b/scripts/ovirt-config-networking @@ -460,16 +460,16 @@ set ${ntproot}/keys /etc/ntp/keys\n\ function setup_menu { NICS="" - udi_list=$(hal-find-by-capability --capability net.80203) - if [ -n "$udi_list" ]; then - for d in $udi_list; do - if [[ ! "$(hal-get-property --udi $d --key net.physical_device)" =~ compute...
2010 May 14
3
Replacement patch...
This one incorporates feedback from mburns and apevec to ensure that all multipath devices are excluded in the list of available drives. Only drives with an identified bus are included in the list now.