5cb8db1cc4
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/tomcat#f60e452abe83bd7a39a5d2d676b4d9b4b325a83d
25 lines
590 B
Desktop File
25 lines
590 B
Desktop File
# Systemd unit file for tomcat instances.
|
|
#
|
|
# To create clones of this service:
|
|
# 0. systemctl enable tomcat@name.service
|
|
# 1. create catalina.base directory structure in
|
|
# /var/lib/tomcats/name
|
|
# 2. profit.
|
|
|
|
[Unit]
|
|
Description=Apache Tomcat Web Application Container
|
|
After=syslog.target network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
EnvironmentFile=/etc/tomcat/tomcat.conf
|
|
Environment="NAME=%i"
|
|
EnvironmentFile=-/etc/sysconfig/tomcat@%i
|
|
ExecStart=/usr/libexec/tomcat/server start
|
|
ExecStop=/usr/libexec/tomcat/server stop
|
|
SuccessExitStatus=143
|
|
User=tomcat
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|