view ci/setup-xvfb.sh @ 24148:0edc315f2d0c v8.2.2615

patch 8.2.2615: test is sourcing the wrong file Commit: https://github.com/vim/vim/commit/a4c81bea38d1f3e372a4191ab0bd7d664cba1428 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Mar 17 15:23:16 2021 +0100 patch 8.2.2615: test is sourcing the wrong file Problem: Test is sourcing the wrong file. Solution: Correct the file name.
author Bram Moolenaar <Bram@vim.org>
date Wed, 17 Mar 2021 15:30:03 +0100
parents 1984a3fcc953
children
line wrap: on
line source

#!/bin/bash
set -e

apt-get install -y xvfb

cat <<EOT >/etc/systemd/system/xvfb.service
[Unit]
Description=X Virtual Frame Buffer Service
After=network.target
[Service]
ExecStart=/usr/bin/Xvfb :99 -screen 0 1024x768x24
[Install]
WantedBy=multi-user.target
EOT

systemctl enable xvfb.service
systemctl start xvfb.service