Correct a missing capitalization

This commit is contained in:
Joshua Boniface 2019-05-21 23:19:19 -04:00
parent 4bfbbaa7d9
commit 8881b97e8b
1 changed files with 1 additions and 1 deletions

View File

@ -316,7 +316,7 @@ if enable_networking:
common.run_os_command('ip link set {} mtu 9000 up'.format(vni_dev))
# Cluster bridge configuration
logger.out('Setting up cluster network bridge on interface {} with IP {}'.format(vni_dev, vni_dev_ip), state='i')
logger.out('Setting up Cluster network bridge on interface {} with IP {}'.format(vni_dev, vni_dev_ip), state='i')
common.run_os_command('brctl addbr brcluster')
common.run_os_command('brctl addif brcluster {}'.format(vni_dev))
common.run_os_command('ip link set brcluster mtu 9000 up')