mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-07-19 04:41:35 +00:00
The windows launcher is going to be retired. We need to move those functionalities to rootfs build side: (LP: #2080223) - enable systemd by default - ship up to 3 rootfs tarballs, differentiating by the upgrade policy
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
|