-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Provide a script to bootstrap mm devices #190
base: master
Are you sure you want to change the base?
Conversation
efa361d
to
7c5264d
Compare
openqa-prepare-mm-setup
Outdated
system("zypper in -y os-autoinst-openvswitch"); | ||
system("systemctl enable --now os-autoinst-openvswitch"); | ||
|
||
my $bridge = 1; | ||
my $openvswitch = "/etc/sysconfig/os-autoinst-openvswitch"; | ||
open(file, '>', $openvswitch) or die "Failed to open $openvswitch for writing!"; | ||
print file "OS_AUTOINST_USE_BRIDGE=br$bridge"; | ||
close(file); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
as this is opensuse/suse specific, make sure to check that too
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Check what?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The commands used to install packages
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good idea! Just the day before yesterday I semi-automated the multi-machine setup on qa-power8-3 within bash. How do you like https://progress.opensuse.org/issues/119008#note-17?
7c5264d
to
8d6342b
Compare
8d6342b
to
16a3d28
Compare
See: https://progress.opensuse.org/issues/115418