Displaying 1 result from an estimated 1 matches for "netconsole_serv".
Did you mean:
netconsole_server
2011 Jul 21
0
[PATCH] add netconsole autoinstall parameter
...b/scripts/ovirt-config-logging
index 233df67..e296ac4 100755
--- a/scripts/ovirt-config-logging
+++ b/scripts/ovirt-config-logging
@@ -174,6 +174,13 @@ function prompt_user {
done
}
+function ovirt_netconsole {
+ augtool <<EOF
+set /files/etc/sysconfig/netconsole/SYSLOGADDR $OVIRT_NETCONSOLE_SERVER
+set /files/etc/sysconfig/netconsole/SYSLOGPORT $OVIRT_NETCONSOLE_PORT
+EOF
+ ovirt_store_config /etc/sysconfig/netconsole
+}
# AUTO for auto-install
if [ "$1" = "AUTO" ]; then
if [ -z "$OVIRT_SYSLOG_SERVER" -o -z "$OVIRT_SYSLOG_PORT" ]; then
@@ -...