Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix missing whitespaces around dracut add_drivers+= #119

Merged
merged 1 commit into from
Apr 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions images/centos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ files:
- path: /etc/dracut.conf.d/lxd.conf
generator: dump
content: |-
add_drivers+="virtio_scsi virtio_pci virtio_console"
add_drivers+=" virtio_scsi virtio_pci virtio_console "
types:
- vm
releases:
Expand All @@ -309,7 +309,7 @@ files:
- path: /etc/dracut.conf.d/lxd.conf
generator: dump
content: |-
add_drivers+="virtio_scsi virtio_console sd_mod"
add_drivers+=" virtio_scsi virtio_console sd_mod "
types:
- vm
releases:
Expand Down
2 changes: 1 addition & 1 deletion images/fedora.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ files:
- path: /etc/dracut.conf.d/lxd.conf
generator: dump
content: |-
add_drivers+=virtio_scsi
add_drivers+=" virtio_scsi "
types:
- vm

Expand Down
2 changes: 1 addition & 1 deletion images/openeuler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ files:
- path: /etc/dracut.conf.d/lxd.conf
generator: dump
content: |-
add_drivers+="virtio_scsi virtio_console sd_mod"
add_drivers+=" virtio_scsi virtio_console sd_mod "
types:
- vm

Expand Down
4 changes: 2 additions & 2 deletions images/springdalelinux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ files:
- path: /etc/dracut.conf.d/lxd.conf
generator: dump
content: |-
add_drivers+="virtio_scsi virtio_pci virtio_console"
add_drivers+=" virtio_scsi virtio_pci virtio_console "
types:
- vm
releases:
Expand All @@ -195,7 +195,7 @@ files:
- path: /etc/dracut.conf.d/lxd.conf
generator: dump
content: |-
add_drivers+="virtio_scsi virtio_console sd_mod"
add_drivers+=" virtio_scsi virtio_console sd_mod "
types:
- vm
releases:
Expand Down