mirror of
https://github.com/apache/cloudstack.git
synced 2025-12-16 10:32:34 +01:00
This appliance will be used for testing purposes only. The appliance will replace the built-in in a test environment before deployment. Some of the integration tests require specific services running within guests to test for cloudstack features. Eg: VPC LB needs an httpd server running. When we need to customize the template this appliance can be used instead of having custom templates for each test. Signed-off-by: Prasanna Santhanam <tsp@apache.org>
36 lines
624 B
INI
36 lines
624 B
INI
install
|
|
cdrom
|
|
lang en_US.UTF-8
|
|
keyboard us
|
|
network --bootproto=dhcp
|
|
rootpw password
|
|
firewall --enabled --service=ssh
|
|
authconfig --enableshadow --passalgo=sha512
|
|
selinux --disabled
|
|
timezone UTC
|
|
bootloader --location=mbr
|
|
|
|
text
|
|
skipx
|
|
zerombr
|
|
|
|
clearpart --all --initlabel
|
|
autopart
|
|
|
|
auth --useshadow --enablemd5
|
|
firstboot --disabled
|
|
reboot
|
|
|
|
%packages --nobase
|
|
@core
|
|
%end
|
|
|
|
%post
|
|
/usr/bin/yum -y install sudo
|
|
/usr/sbin/groupadd veewee
|
|
/usr/sbin/useradd veewee -g veewee -G wheel
|
|
echo "veewee"|passwd --stdin veewee
|
|
echo "veewee ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers.d/veewee
|
|
chmod 0440 /etc/sudoers.d/veewee
|
|
%end
|