tee /etc/systemd/system/enable-swapfile.service >/dev/null <<'EOF'
[Unit]
Description=Enable swapfile via swapon
After=local-fs.target
Requires=local-fs.target
[Service]
Type=oneshot
ExecStart=/sbin/swapon /swapfile
RemainAfterExit=yes
[Install]
WantedBy=multi-user.target
EOF