<div>Hello, here is my CentOS contextualization file, include it on CONTEXT section with FILE="../yourpath/init.sh".</div><div> </div><div>#!/bin/bash</div><div><br>if [ -f /mnt/context/context.sh ];<br>then<br>  . /mnt/context/context.sh<br>

else<br>  . /media/CDROM/context.sh<br>fi</div><div>hostname $HOSTNAME<br>sed -i "/HOSTNAME=/s/=.*$/=$HOSTNAME/" /etc/sysconfig/network<br>source /etc/sysconfig/network<br>hostname $HOSTNAME</div><div>if [ -n "$IP_PUBLIC" ]; then<br>

        ifconfig eth0 $IP_PUBLIC<br>fi</div><div>if [ -n "$NETMASK_PUBLIC" ]; then<br>        ifconfig eth0 netmask $NETMASK_PUBLIC<br>fi</div><div>if [ -n "$GATEWAY" ]; then<br>        ip route del default<br>

        ip route add default via $GATEWAY<br>fi</div><div>if [ -f /mnt/context/resolv.conf ]; then<br>        #use cat, dont screw up file permissions or context<br>        cat /mnt/context/resolv.conf > /etc/resolv.conf<br>

fi</div><div>/etc/init.d/network restart</div><div>if [ -n "$USERNAME" ]; then<br>        useradd $USERNAME<br>        echo $USER_PW | passwd --stdin $USERNAME<br>        if [ -f /mnt/$USER_PUBKEY ]; then<br>                mkdir -p /home/$USERNAME/.ssh/<br>

                cat /mnt/$USER_PUBKEY >> /home/$USERNAME/.ssh/authorized_keys<br>                chown -R $USERNAME:$USERNAME /home/$USERNAME/.ssh<br>                chmod -R 600 /home/$USERNAME/.ssh/authorized_keys<br>

                chcon -R -t user_ssh_home_t /home/$USERNAME/.ssh/authorized_keys<br>       fi<br>fi<br><br clear="all"><br>--<br>André Monteiro<br><br><br>
<br><br></div><div class="gmail_quote">On Mon, Oct 15, 2012 at 2:21 PM, Kannadhasan Thangadurai <span dir="ltr"><<a href="mailto:kannadhasan.t@payoda.com" target="_blank">kannadhasan.t@payoda.com</a>></span> wrote:<br>

<blockquote style="margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left-color:rgb(204,204,204);border-left-width:1px;border-left-style:solid" class="gmail_quote"><br><div>Hi Team,</div><div><br></div><div>I have installed Opennebula 3.6 and sunstone successively on centos 6.3, are working in default market place image.</div>

<div><br></div><div>I am trying to contextualize CentOS image, Could you please  guide me on this.</div>

<div><br></div><div>Kindly share if you have any proper document.</div><div><br></div><div>Thanks,</div><div>Kannadhasan Thangadurai.</div>
<br>_______________________________________________<br>
Users mailing list<br>
<a href="mailto:Users@lists.opennebula.org">Users@lists.opennebula.org</a><br>
<a href="http://lists.opennebula.org/listinfo.cgi/users-opennebula.org" target="_blank">http://lists.opennebula.org/listinfo.cgi/users-opennebula.org</a><br>
<br></blockquote></div><br>