Sha256: 7d1926ecdfe809c811d375de402aea2c9e6835bd87129d75bc6afd29ee5a8230

Contents?: true

Size: 1.46 KB

Versions: 16

Compression:

Stored size: 1.46 KB

Contents

#!/bin/bash

# generic daemontools log run script

# Copyright 2017-2018 Vasco Santos <valexsantos[at]gmail[dot]com>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
# permitted provided that the following conditions are met:
#
# 1. Redistributions of this script must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#
# cfgs
#
LOGUSER=nobody
APP=mkitd
LOGDIR=/var/log/$APP
LOG_FILE_HISTORY=20
LOG_FILE_SIZE=100000
##
# doit
##
PATH=/opt/daemontools/bin:/usr/local/bin:/usr/bin:/bin
export PATH
# create log dir
[ -d $LOGDIR ] || mkdir $LOGDIR
# set owner
chown -R $LOGUSER $LOGDIR
# go
exec 2>&1
exec setuidgid $LOGUSER multilog t s$LOG_FILE_SIZE n$LOG_FILE_HISTORY $LOGDIR

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
mkit-0.9.0 samples/daemontools/log/run
mkit-0.8.0 samples/daemontools/log/run
mkit-0.7.2 samples/daemontools/log/run
mkit-0.7.1 samples/daemontools/log/run
mkit-0.7.0 samples/daemontools/log/run
mkit-0.6.3 samples/daemontools/log/run
mkit-0.6.2 samples/daemontools/log/run
mkit-0.6.1 samples/daemontools/log/run
mkit-0.6.0 samples/daemontools/log/run
mkit-0.5.0 samples/daemontools/log/run
mkit-0.4.3 samples/daemontools/log/run
mkit-0.4.2 samples/daemontools/log/run
mkit-0.4.1 samples/daemontools/log/run
mkit-0.4.0 samples/daemontools/log/run
mkit-0.3.0 samples/daemontools/log/run
mkit-0.2.0 samples/daemontools/log/run