blob: 69e887fb21e3a4f6d2827be18815c95979bb2936 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# http://solie.co.vu/openmeetings-systemd-unit/
# Openmeetings Systemd Unit
# Written by Maz Solie the 18 Apr 2015 - Tagged: systemd | arch | linux | virtualbox | openmeetings
# This was originally spelled openmeeting.service (forgot the s)
[Unit]
Description=Apache OpenMeetings
After=network.target
[Service]
Type=simple
ExecStart=/opt/openmeetings/red5.sh
ExecStop=/opt/openmeetings/red5-shutdown.sh
RestartSec=5
Restart=on-failure
[Install]
WantedBy=multi-user.target
|