mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-21 17:10:35 +00:00
Creates Linux guest with SeaStar + DPDK in just 2 commands. Signed-off-by: Takuya ASADA <syuu@cloudius-systems.com>
7 lines
275 B
Bash
Executable File
7 lines
275 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm -rf /tmp/seastar
|
|
cp -a ../ /tmp/seastar
|
|
virt-builder fedora-21 -o seastar-dev.qcow2 --format qcow2 --size 20G --hostname seastar-dev --install "@core" --update --selinux-relabel --copy-in /tmp/seastar:/root/ --firstboot scripts/bootstrap.sh
|
|
rm -rf /tmp/seastar
|