Moved commands which needs sudo to nova.sh

This commit is contained in:
Nachi Ueno 2011-01-14 06:25:41 +09:00
parent 2d642f64dc
commit bc0c5ba502
2 changed files with 3 additions and 5 deletions

View File

@ -89,6 +89,9 @@ if [ "$CMD" == "install" ]; then
#For IPV6
sudo apt-get install -y python-netaddr
sudo apt-get install -y radvd
#(Nati) Note that this configuration is only needed for nova-network node.
sudo bash -c "echo 1 > /proc/sys/net/ipv6/conf/all/forwarding"
sudo bash -c "echo 0 > /proc/sys/net/ipv6/conf/all/accept_ra"
if [ "$USE_MYSQL" == 1 ]; then
cat <<MYSQL_PRESEED | debconf-set-selections

View File

@ -124,11 +124,6 @@ def init_host():
(FLAGS.fixed_range, FLAGS.dmz_cidr))
_confirm_rule("POSTROUTING", "-t nat -s %(range)s -d %(range)s -j ACCEPT" %
{'range': FLAGS.fixed_range})
if(FLAGS.use_ipv6):
_execute('sudo bash -c ' +
'"echo 1 > /proc/sys/net/ipv6/conf/all/forwarding"')
_execute('sudo bash -c ' +
'"echo 0 > /proc/sys/net/ipv6/conf/all/accept_ra"')
def bind_floating_ip(floating_ip, check_exit_code=True):