search for: ovirt_setup_libvirtd

Displaying 5 results from an estimated 5 matches for "ovirt_setup_libvirtd".

2009 Aug 03
1
[PATCH node] changed fickle anyterm sysconfig changes to something more robust (revised)
...end of the anyterm sysconf --- scripts/ovirt-functions | 9 ++++----- 1 files changed, 4 insertions(+), 5 deletions(-) diff --git a/scripts/ovirt-functions b/scripts/ovirt-functions index af3a257..98e88e7 100644 --- a/scripts/ovirt-functions +++ b/scripts/ovirt-functions @@ -213,11 +213,10 @@ ovirt_setup_libvirtd() { ovirt_setup_anyterm() { # configure anyterm - sed -i -e 's/^# ANYTERM_CMD=\/usr\/bin\/anyterm-cmd/ANYTERM_CMD="sudo \/usr\/bin\/virsh console %p"/' \ - /etc/sysconfig/anyterm - - sed -i -e 's/^# ANYTERM_LOCAL_ONLY=true/ANYTERM_LOCAL_ONLY=false/' \ -...
2009 May 28
1
[PATCH node] Temporarily disable security driver.
...Main <imain at redhat.com> --- scripts/ovirt-functions | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/scripts/ovirt-functions b/scripts/ovirt-functions index 25a6bab..a1ee4ac 100755 --- a/scripts/ovirt-functions +++ b/scripts/ovirt-functions @@ -188,6 +188,11 @@ ovirt_setup_libvirtd() { # set up qemu daemon to allow outside VNC connections sed -i -e 's/^[[:space:]]*#[[:space:]]*\(vnc_listen = "0.0.0.0"\).*/\1/' \ /etc/libvirt/qemu.conf + + # FIXME: For now, disable selinux security driver for qemu since we don't seem + # to have th...
2009 Aug 03
0
[PATCH node] changed fickle anyterm sysconfig changes to something more rebust
...end of the anyterm sysconf --- scripts/ovirt-functions | 9 ++++----- 1 files changed, 4 insertions(+), 5 deletions(-) diff --git a/scripts/ovirt-functions b/scripts/ovirt-functions index af3a257..1c7b0c4 100644 --- a/scripts/ovirt-functions +++ b/scripts/ovirt-functions @@ -213,11 +213,10 @@ ovirt_setup_libvirtd() { ovirt_setup_anyterm() { # configure anyterm - sed -i -e 's/^# ANYTERM_CMD=\/usr\/bin\/anyterm-cmd/ANYTERM_CMD="sudo \/usr\/bin\/virsh console %p"/' \ - /etc/sysconfig/anyterm - - sed -i -e 's/^# ANYTERM_LOCAL_ONLY=true/ANYTERM_LOCAL_ONLY=false/' \ -...
2011 Jul 25
0
[PATCH node] Drop F15 build recipes
...a/recipe/ovirt15-pkgs.ks +++ /dev/null @@ -1,2 +0,0 @@ -%include fedora-pkgs.ks -matahari-net diff --git a/recipe/ovirt15-post.ks b/recipe/ovirt15-post.ks deleted file mode 100644 index 16e4131..0000000 --- a/recipe/ovirt15-post.ks +++ /dev/null @@ -1,145 +0,0 @@ -# ovirt-install-node-stateless -# ovirt_setup_libvirtd() - # just to get a boot warning to shut up - touch /etc/resolv.conf - - # make libvirtd listen on the external interfaces - sed -i -e 's/^#\(LIBVIRTD_ARGS="--listen"\).*/\1/' \ - /etc/sysconfig/libvirtd - - # set up qemu daemon to allow outside VNC connection...
2010 Oct 22
0
[PATCH node] First draft of replacing some of the ovirt-config-* scripts with python equivalents.
...dig_cmd, shell=True, stdout=PIPE, stderr=STDOUT) + dig_output = dig.stdout.read() + dig.poll() + dig_rc = dnsreply.returncode() + if dig_rc == 0: + a,b,port,host = dig_output.split("=", 4) + return (port, host) + return False + +def ovirt_setup_libvirtd(): + # just to get a boot warning to shut up + os.system("touch /etc/resolv.conf") + + # make libvirtd listen on the external interfaces + os.system("sed -i -e 's/^#\(LIBVIRTD_ARGS=\"--listen\"\).*/\1/' /etc/sysconfig/libvirtd") + + # set up qemu...