search for: bindmounted

Displaying 4 results from an estimated 4 matches for "bindmounted".

2009 Jul 22
1
[PATCH ovirt-node-image] alias vi to vi + restorecon
fixes a problem with editing a bindmounted file with vi. The file will not retain the same selinux context due to the way vi copies files around. Resolves rhbz#509082 --- common-post.ks | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/common-post.ks b/common-post.ks index 8a4940a..c85be15 100644 --- a/common-p...
2009 May 20
2
[PATCH node] Adds support for a core dump partition to the node.
Creates an additional LV, CoreDump. This LV, if present, is mounted at /var/log/core. Its default size is 10240 MB (10G) and has a minimum size of 1024 MB. Additionally, the default log partition size was changed from 256 MB to 2048 MB (2G). Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- scripts/ovirt-config-storage | 23 ++++++++++++++++++----- scripts/ovirt-early
2007 Sep 10
1
how to compile a xen dom0 kernel the debian way
hello, What is the current situation with xen on amd64? the debian/sid archive keeps no linux-image-2.6.22-2-xen-amd64, and I was not able to compile a 2.6.22 dom0 kernel with debian xen patches applied on my amd64 system. I have linux-source-2.6.22 and linux-patch-debian-2.6.22 installed, and followed the instructions from the workaround for
2010 Oct 22
0
[PATCH node] First draft of replacing some of the ovirt-config-* scripts with python equivalents.
...+ log("WARNING: persistent config storage not available\n") + rc=2 + return rc + +def is_persisted(filename): + abspath = os.path.abspath(filename) + if os.path.exists("/config" + abspath): + return True + else: + return False + +# unmount bindmounted config files +# unmount_config /etc/config /etc/config2 ... +# +# Use before running commands which fail on bindmounted files. +# After the file is replaced, call ovirt_store_config /etc/config ... +# to bindmount the config file again. +# + +def check_bind_mount(config_file): + bind_mount...