12 lines
526 B
Plaintext
12 lines
526 B
Plaintext
# Automatically trigger configdrive mounting.
|
|
|
|
ACTION!="add|change", GOTO="coreos_configdrive_end"
|
|
|
|
# A normal config drive. Block device formatted with iso9660 or fat
|
|
SUBSYSTEM=="block", ENV{ID_FS_TYPE}=="iso9660|vfat", ENV{ID_FS_LABEL}=="config-2", TAG+="systemd", ENV{SYSTEMD_WANTS}+="configdrive-block.service"
|
|
|
|
# Addtionally support virtfs from QEMU
|
|
SUBSYSTEM=="virtio", DRIVER=="9pnet_virtio", ATTR{mount_tag}=="config-2", TAG+="systemd", ENV{SYSTEMD_WANTS}+="configdrive-virtfs.service"
|
|
|
|
LABEL="coreos_configdrive_end"
|