summarylogtreecommitdiffstats
path: root/vncserver.service
diff options
context:
space:
mode:
authorFélix Piédallu2015-09-12 20:07:28 +0200
committerFélix Piédallu2015-09-12 20:07:28 +0200
commit6330565c2f2841b2d00a7eb03d6883d10cf1fc61 (patch)
treeb565f32a77ad254c60a1c08e23de5ca5875aeb6c /vncserver.service
downloadaur-tightvnc.tar.gz
added all
Diffstat (limited to 'vncserver.service')
-rw-r--r--vncserver.service29
1 files changed, 29 insertions, 0 deletions
diff --git a/vncserver.service b/vncserver.service
new file mode 100644
index 000000000000..b64e729a6c86
--- /dev/null
+++ b/vncserver.service
@@ -0,0 +1,29 @@
+# The vncserver service unit file
+#
+# 1. Copy this file to /etc/systemd/system/vncserver@:<display>.service
+# 2. Edit User=
+# ("User=foo")
+# 3. Edit and vncserver parameters appropriately
+# ("/usr/bin/vncserver %i -arg1 -arg2 -argn")
+# 4. Run `systemctl --system daemon-reload`
+# 5. Run `systemctl enable vncserver@:<display>.service`
+#
+# DO NOT RUN THIS SERVICE if your local area network is untrusted!
+#
+# See the wiki page for more on security
+# https://wiki.archlinux.org/index.php/Vncserver
+
+[Unit]
+Description=Remote desktop service (VNC)
+After=syslog.target network.target
+
+[Service]
+Type=forking
+User=
+# Clean any existing files in /tmp/.X11-unix environment, especially useful for VMs
+ExecStartPre=-/usr/bin/vncserver -kill %i
+ExecStart=/usr/bin/vncserver %i
+ExecStop=/usr/bin/vncserver -kill %i
+
+[Install]
+WantedBy=multi-user.target