blob: cf630adebc69d2f6bd5e7a5de62cd48d6f02ae4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# 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
Environment="RED5_HOME=/opt/openmeetings"
ExecStart=/opt/openmeetings/red5.sh
ExecStop=/opt/openmeetings/red5-shutdown.sh
RestartSec=5
Restart=on-failure
[Install]
WantedBy=multi-user.target
|