bf7591bdc05ddaafa94137b9aee1cb7d7f9048de
[genesis.git] / fuel / build / f_isoroot / f_bootstrap / post-scripts / 02_fix_console_speed.sh
1 #/bin/sh
2 echo "Changing console speed to 115200 (std is 9600) on bootstrap"
3 echo "Old settings"
4 dockerctl shell cobbler cobbler profile report --name bootstrap
5 echo "Modifying"
6 dockerctl shell cobbler cobbler profile edit --name bootstrap --kopts "console=tty0 console=ttyS0,115200" --in-place
7 echo "New settings"
8 dockerctl shell cobbler cobbler profile report --name bootstrap
9 echo "Setting console speed to 115200 on ubuntu_1204_x86_64 (std is no serial console)"
10 echo "Old settings"
11 dockerctl shell cobbler cobbler profile report --name ubuntu_1204_x86_64
12 echo "Modifying"
13 dockerctl shell cobbler cobbler profile edit --name ubuntu_1204_x86_64 --kopts "console=tty0 console=ttyS0,115200" --in-place
14 echo "New settings"
15 dockerctl shell cobbler cobbler profile report --name ubuntu_1204_x86_64