Blame SOURCES/tomcat-named.service

e52055
# Systemd unit file for tomcat instances.
e52055
# 
e52055
# To create clones of this service:
e52055
# 0. systemctl enable tomcat@name.service
e52055
# 1. create catalina.base directory structure in
e52055
#    /var/lib/tomcats/name
e52055
# 2. profit.
e52055
e52055
[Unit]
e52055
Description=Apache Tomcat Web Application Container
e52055
After=syslog.target network.target
e52055
e52055
[Service]
e52055
Type=simple
e52055
EnvironmentFile=/etc/tomcat/tomcat.conf
e52055
Environment="NAME=%I"
e52055
EnvironmentFile=-/etc/sysconfig/tomcat@%I
e52055
ExecStart=/usr/libexec/tomcat/server start
e52055
ExecStop=/usr/libexec/tomcat/server stop
e52055
SuccessExitStatus=143
e52055
User=tomcat
e52055
UMask=027
e52055
e52055
[Install]
e52055
WantedBy=multi-user.target
e52055