search for: initial_login_retry_max

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

2009 Jul 22
1
[PATCH ovirt-node-image] alias vi to vi + restorecon
...ay 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-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 Sep 17
0
[PATCH node-image] enable NFS for storing libvirt image
...common-post.ks | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/common-post.ks b/common-post.ks index 0c0a3f4..688ba9d 100644 --- a/common-post.ks +++ b/common-post.ks @@ -132,6 +132,11 @@ chmod 700 /root/.ssh # fix iSCSI/LVM startup issue sed -i 's/node\.session\.initial_login_retry_max.*/node.session.initial_login_retry_max = 60/' /etc/iscsi/iscsid.conf +# enable NFS for storing libvirt image +cat >> /etc/rc.d/rc.local <<EOF +setsebool virt_use_nfs on +EOF + # root's bash profile cat >> /root/.bashrc <<EOF # aliases used for the temporary --...
2008 Apr 21
0
iSCSI + CentOS 5.1 +_netdev problem
Dear Srs, I'm trying to automount an iSCSI device at system startup, this is the configuration: - CentOS 5.1, with kernel 2.6.18-53.1.14.el5PAE, i686 arch - iscsi-initiator-utils 6.2.0.865-0.8.el5 - iSCSI target is a Infortrend A16E-G2130-4 I have solved the "initial_login_retry_max" problem [1] and Open- iSCSI logs into Infortrend target without problems, with 10 retries in the parameter, but the partition is not automounted. Start scripts order appears OK: # ls -1 /etc/rc3.d/S* /etc/rc3.d/S07iscsid /etc/rc3.d/S10network /etc/rc3.d/S12syslog /etc/rc3.d/S13iscsi /etc...
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.