search for: mod_vi

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

Did you mean: mod_jk
2009 Jul 22
1
[PATCH ovirt-node-image] alias vi to vi + restorecon
...on-post.ks index 8a4940a..c85be15 100644 --- a/common-post.ks +++ b/common-post.ks @@ -131,6 +131,11 @@ sed -i 's/node\.session\.initial_login_retry_max.*/node.session.initial_login_re # root's bash profile cat >> /root/.bashrc <<EOF # aliases used for the temporary +function mod_vi() { + vi $@ + restorecon -v $@ +} +alias vi="mod_vi" alias ping='ping -c 3' EOF -- 1.6.0.6
2009 Oct 30
0
[PATCH] Added two libvirt directories to the initial node image that are not created by the RPM.
Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- common-post.ks | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/common-post.ks b/common-post.ks index 3a23c02..d02c946 100644 --- a/common-post.ks +++ b/common-post.ks @@ -143,6 +143,9 @@ alias vi="mod_vi" alias ping='ping -c 3' EOF +mkdir /etc/libvirt/qemu +mkdir /etc/libvirt/storage + # Remove the default logrotate daily cron job # since we run it every 10 minutes instead. rm -f /etc/cron.daily/logrotate -- 1.6.2.5
2009 Oct 14
4
Refactor ovirt-node-image code base for inclusion in Fedora
Main reason for refactor is no ovirt-node-image binary image allowed in fedora. Removed ks files, now in ovirt-node-recipe, which is subpackage of ovirt-node. Removed tools, these are now in ovirt-node-recipe which is subpackage of ovirt-node.
2009 Oct 14
8
Refactor ovirt-node code base for inclusion in Fedora
Main reason for refactor is no ovirt-node-image binary image allowed in fedora. Moves tools and kickstart files form ovirt-node-image to subpackage ovirt-node-recipe. Removes old sub packages form ovirt-node, stateless, logos, selinux. Modifies init scripts to meet Fedora packaging guidelines: added status, reload, and lockfile, rhbz: 514221 Added License file.