search for: ovirt_

Displaying 1 result from an estimated 1 matches for "ovirt_".

Did you mean: ovirt
2010 Oct 22
0
[PATCH node] First draft of replacing some of the ovirt-config-* scripts with python equivalents.
...pts/ovirtfunctions.py b/scripts/ovirtfunctions.py new file mode 100644 index 0000000..f2b9e39 --- /dev/null +++ b/scripts/ovirtfunctions.py @@ -0,0 +1,672 @@ +#!/usr/bin/python +import subprocess +import os +from subprocess import Popen, PIPE, STDOUT +import tempfile +import string +import sys + + +OVIRT_LOGFILE="/var/log/ovirt.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 t...