mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-10 04:37:29 +00:00
Microsoft offically support systemd now and our Pro service relies on it. This option is enabled by default via our launcher (Windows-side) on first run for quite a while. Remve this file creation from it, don’t ship it in a package as the file may be altered by the user to add additional options and ship it as part of the rootfs. Co-authored-by: Jean-Baptiste Lallement <jean-baptiste@ubuntu.com>
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
|