search for: karg

Displaying 9 results from an estimated 9 matches for "karg".

Did you mean: arg
2010 Jan 18
1
Fixed a karg issue...
I missed one situation in the last patch. It wasn't properly handling the karg for NTP. This patch fixes that.
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 Jul 22
1
Updated patch...
This patch obsoletes the previous, renaming the karg to ssh_pwauth.
2010 Mar 16
1
[PATCH] ovirt-awake improvements
>From 1ca6e713d0c23279a6800e6dfb4a76ab4250f56f Mon Sep 17 00:00:00 2001 From: Arthur CLEMENT <aclement at linagora.com> Date: Tue, 16 Mar 2010 16:36:50 +0000 Subject: [PATCH] Function typo fixed. Move the sourcing of NODE_CONFIG forward to not override the $OVIRT_RUNTIME_MODE read from karg Signed-off-by: Arthur CLEMENT <aclement at linagora.com> --- scripts/ovirt-awake | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/scripts/ovirt-awake b/scripts/ovirt-awake index d5865c5..5126a54 100755 --- a/scripts/ovirt-awake +++ b/scripts/ovirt-awake @@ -22,...
2010 Mar 02
1
fc12 node partially working
Hi, I finally have a fc12 node partially working. I still have to override the kargs runtime_mode in ovirt-early (I want "ovirt" runtime mode): 368 runtime_mode*) 369 OVIRT_RUNTIME_MODE=${i#runtime_mode=} 370 #runtime_mode=${i#runtime_mode=} 371 ;; And I have to set manually the the broker for qpid : ser...
2009 Jul 21
0
[PATCH node] Adds a new kernel cmdline argument to toggle SSH password auth.
The new karg is "ssh" and can be set using either 0/1 or true/false to set whether SSH password auth will be enabled or not during an automated install. rhbz#513037 Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- scripts/ovirt-config-password | 42 ++++++++++++++++++++++---------...
2009 Nov 16
1
Refactored upgrade patch...
This patch includes feedback from apevec to remain backward compatible with the previous karg, ovirt_local_boot.
2004 Dec 10
4
New PRI with DID in US?
Just turned up a new PRI with DID's in the US. I'm receiving 5 digits of the DID numbers as I requested. Assuming I have 100 DID numbers but only define 50 of those in extensions.conf, is there an easy way to send the incoming calls for the 20 undefined numbers to a common resource (ivr, operator, or canned message) without having to define each one?
2010 Oct 22
0
[PATCH node] First draft of replacing some of the ovirt-config-* scripts with python equivalents.
...irt.log" +OVIRT_TMP_LOGFILE="/tmp/ovirt.log" +# label of the oVirt partition +OVIRT_LABEL="OVIRT" +# configuration values are loaded in the following order: +# 1. /etc/sysconfig/node-config sets the default values +# 2. /etc/default/ovirt is loaded to override defaults with karg values +NODE_SYSCONFIG="/etc/sysconfig/node-config" +OVIRT_DEFAULTS="/etc/default/ovirt" + +OVIRT_VARS = {} +# Parse all OVIRT_* variables +if os.path.exists(NODE_SYSCONFIG): + try: + f = open(NODE_SYSCONFIG, 'r') + for line in f: + try: +...