view ci/setup-xvfb.sh @ 24410:25db91a3281b v8.2.2745

patch 8.2.2745: Vim9: missing part of the argument change Commit: https://github.com/vim/vim/commit/51e7e78de7320a734ddc2d7931e767bccaf7e6f2 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 10 17:46:52 2021 +0200 patch 8.2.2745: Vim9: missing part of the argument change Problem: Vim9: missing part of the argument change. Solution: Add missing changes.
author Bram Moolenaar <Bram@vim.org>
date Sat, 10 Apr 2021 18:00:03 +0200
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