Don't rely on the deployment script to install the right config or to start the services. This further disentangles the tests from schutzbot.
19 lines
489 B
YAML
19 lines
489 B
YAML
#cloud-config
|
|
yum_repos:
|
|
# Fetch osbuild packages from a repository served on the host.
|
|
#
|
|
# In qemu user networking, 10.0.2.2 always points to the host:
|
|
# https://wiki.qemu.org/Documentation/Networking#User_Networking_.28SLIRP.29
|
|
osbuild:
|
|
name: osbuild
|
|
baseurl: "http://10.0.2.2:8000"
|
|
enabled: true
|
|
gpgcheck: false
|
|
user: admin
|
|
password: foobar
|
|
ssh_pwauth: True
|
|
chpasswd:
|
|
expire: False
|
|
sudo: 'ALL=(ALL) NOPASSWD:ALL'
|
|
runcmd:
|
|
- /run/provision-scripts/deploy.sh
|