0168055fe6
Apply refactoring patch https://review.openstack.org/#/c/149612/. Move contents of fuel-main/fuelweb_test to the repo. Add run_tests.sh. Change fuel-devops version to 2.9.0 in requirements file. Change-Id: Id321d63d97290f2fb22736abbe1d74315aed2893
11 lines
284 B
Bash
11 lines
284 B
Bash
#!/bin/sh
|
|
|
|
echo "Creating test file"
|
|
touch /home/test_file
|
|
|
|
echo "Creating volume mount script on instance"
|
|
echo "#!/bin/sh\nsudo /usr/sbin/mkfs.ext4 /dev/vdb\nsudo mount /dev/vdb /mnt" | tee /home/mount_volume.sh
|
|
chmod 777 /home/mount_volume.sh
|
|
|
|
echo -e "test\ntest" | passwd cirros
|