Add default configuration file for droned.
Also mark configuration file as conffiles.
This commit is contained in:
parent
dc3018434e
commit
fbbdba3514
4 changed files with 20 additions and 3 deletions
3
Makefile
3
Makefile
|
@ -48,6 +48,7 @@ test:
|
|||
|
||||
install:
|
||||
cp deb/drone/etc/init/drone.conf /etc/init/drone.conf
|
||||
test -f /etc/default/drone || cp deb/drone/etc/default/drone /etc/default/drone
|
||||
cd bin && install -t /usr/local/bin drone
|
||||
cd bin && install -t /usr/local/bin droned
|
||||
mkdir -p /var/lib/drone
|
||||
|
@ -75,4 +76,4 @@ dpkg:
|
|||
dpkg-deb --build deb/drone
|
||||
|
||||
run:
|
||||
bin/droned --port=":8080" --datasource="/tmp/drone.sqlite"
|
||||
bin/droned --port=":8080" --datasource="/tmp/drone.sqlite"
|
||||
|
|
2
deb/drone/DEBIAN/conffiles
Normal file
2
deb/drone/DEBIAN/conffiles
Normal file
|
@ -0,0 +1,2 @@
|
|||
/etc/init/drone.conf
|
||||
/etc/default/drone
|
10
deb/drone/etc/default/drone
Normal file
10
deb/drone/etc/default/drone
Normal file
|
@ -0,0 +1,10 @@
|
|||
# Upstart configuration file for droned.
|
||||
|
||||
# Command line options:
|
||||
#
|
||||
# -datasource="drone.sqlite":
|
||||
# -driver="sqlite3":
|
||||
# -path="":
|
||||
# -port=":8080":
|
||||
#
|
||||
#DRONED_OPTS="--port=:80"
|
|
@ -4,5 +4,9 @@ chdir /var/lib/drone
|
|||
console log
|
||||
|
||||
script
|
||||
droned --port=":80"
|
||||
end script
|
||||
DRONED_OPTS="--port=:80"
|
||||
if [ -f /etc/default/$UPSTART_JOB ]; then
|
||||
. /etc/default/$UPSTART_JOB
|
||||
fi
|
||||
droned $DRONED_OPTS
|
||||
end script
|
||||
|
|
Loading…
Reference in a new issue