search for: bindmount

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

Did you mean: bind_mount
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...
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
...y.diff (.) IGNORED bugfix/m68k/zorro-module-device-table.diff (.) IGNORED bugfix/m68k/falconide_intr_lock-ratelimit.diff (.) IGNORED bugfix/m68k/debian-2.6.21-2-rom-isa.diff --> 2 fully applied. (.) IGNORED features/all/vserver/vs2.2.0.3.patch (.) IGNORED features/all/vserver/bindmount-dev.patch --> 4 fully applied. Patch /usr/src/kernel-patches/all/2.6.22/apply/xen processed fine echo done > stamp-patch [...] so how do you compile a xen dom0 host-kernel for amd64? is it possible with recent kernel sources at all? Please Cc me in your replies, as i'm not subscribed t...
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_mou...