1
0
mirror of https://github.com/rancher/os.git synced 2025-09-03 07:44:21 +00:00

Merge pull request #1940 from SvenDowideit/os-1643-vfat-config-drive

Add test for vfat formatted config drive
(cherry picked from commit a2e3c9aa50)
This commit is contained in:
Sven Dowideit
2017-06-23 21:51:38 +10:00
parent 3c34f77616
commit 6c6d23b649
3 changed files with 15 additions and 2 deletions

View File

@@ -28,3 +28,13 @@ func (s *QemuSuite) TestIsoCloudConfig(c *C) {
s.CheckCall(c, `ls .ssh/authorized_keys`)
}
func (s *QemuSuite) TestFatCloudConfig(c *C) {
runArgs := []string{
"--fresh",
"--cloud-config-fat",
}
s.RunQemuWith(c, runArgs...)
s.CheckCall(c, `ls .ssh/authorized_keys`)
}