mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-11-05 11:24:07 +00:00
11 lines
136 B
Bash
Executable File
11 lines
136 B
Bash
Executable File
#!/bin/bash -eu
|
|
# vi: ts=4 expandtab
|
|
#
|
|
# Enable systemd by default on our WSL image
|
|
#
|
|
|
|
cat <<EOF >/etc/wsl.conf
|
|
[boot]
|
|
systemd=true
|
|
EOF
|