6219ad7917
The images produced by the diskimage-builder have their filesystem with a label of "cloudimg-rootfs", so we need to change the default /etc/fstab on fedora to reflect that. Change-Id: Id1bb00cb81cb200a114f500e26272624be577da0
5 lines
117 B
Bash
Executable File
5 lines
117 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Fedora sets up for root to have a label of "_/"
|
|
sed -i "s%LABEL=_/%LABEL=cloudimg-rootfs%" /etc/fstab
|