1
0
mirror of https://github.com/rancher/os.git synced 2025-09-02 15:24:32 +00:00

Add test for vfat formatted config drive

This commit is contained in:
Robert Juliano
2017-06-06 01:30:54 +00:00
committed by Sven Dowideit
parent 68b005bc50
commit 5dd92a610b
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`)
}