rc/trafficserver.service.in (36 lines of code) (raw):

# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # [Unit] Description=Apache Traffic Server is a fast, scalable and extensible caching proxy server. After=network.target [Service] Type=simple EnvironmentFile=-/etc/sysconfig/trafficserver ExecStart=@exp_bindir@/traffic_server $TS_DAEMON_ARGS Restart=on-failure RestartSec=5s LimitNOFILE=1000000 ExecStopPost=/bin/sh -c ' \ export TS_PIDFILE=$(@exp_bindir@/traffic_layout 2>/dev/null | grep RUNTIMEDIR | cut -d: -f2)/server.lock ; \ /bin/rm -f $TS_PIDFILE ; \ if [[ $? -ne 0 ]]; then echo "ERROR: Unable to delete PID"; exit 1; fi' TimeoutStopSec=5s ExecReload=@exp_bindir@/traffic_ctl config reload KillMode=process [Install] WantedBy=multi-user.target