diff --git a/UpdateLog.sh b/UpdateLog.sh new file mode 100644 index 0000000..bf992a2 --- /dev/null +++ b/UpdateLog.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +VERSION=(grep -o -E "[0-9]+" Version.h) +DATE=$(date +"%a, %d %b %a %H:%M:%S %z") + +echo >> debian/changelog +echo "brandmeister ${VERSION} none; urgency=low" >> debian/changelog +echo >> debian/changelog +echo "* Daily build" >> debian/changelog +echo >> debian/changelog +echo " -- Artem Prilutskiy ${DATE}" >> debian/changelog +echo >> debian/changelog + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/conffiles b/debian/conffiles new file mode 100644 index 0000000..bf522cc --- /dev/null +++ b/debian/conffiles @@ -0,0 +1 @@ +/opt/CronosAgent/cronosagent.sh diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..26f0269 --- /dev/null +++ b/debian/control @@ -0,0 +1,12 @@ +Source: cronosagent +Section: unknown +Priority: extra +Maintainer: Artem Prilutskiy +Build-Depends: + debhelper (>= 5), libconfig-dev (>= 1.3), libssl-dev +Standards-Version: 3.8.4 + +Package: cronosagent +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: CronosAgent for BrandMeister DMR Master Server diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..341c663 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,2 @@ +Copyright: (c) 2016 Artem Prilutskiy + diff --git a/debian/postinst b/debian/postinst new file mode 100755 index 0000000..12e02a3 --- /dev/null +++ b/debian/postinst @@ -0,0 +1,35 @@ +#!/bin/bash + +PREFIX=/opt/CronosAgent + +grep master /etc/passwd > /dev/null +if [ "$?" == "1" ] +then + addgroup cronos + adduser cronos --system --home $PREFIX --shell /bin/false --disabled-login --disabled-password +fi + +ps -eaf | grep root | grep systemd > /dev/null +if [ "$?" == "0" ] +then + ln -s -f $PREFIX/cronosagent.service /etc/systemd/system/multi-user.target.wants/cronosagent.service + + systemctl daemon-reload + systemctl start systemd-modules-load + + systemctl restart cronosagent +else + ln -s -f $PREFIX/cronosagent-daemon /etc/init.d/cronosagent + + update-rc.d cronosagent defaults + + service cronosagent restart + + if [ -d /etc/monit/conf.d ] + then + ln -s -f $PREFIX/cronosagent-monit /etc/monit/conf.d/cronosagent + service monit restart + fi +fi + +exit 0 diff --git a/debian/prerm b/debian/prerm new file mode 100755 index 0000000..b5227e1 --- /dev/null +++ b/debian/prerm @@ -0,0 +1,17 @@ +#!/bin/bash + +if [ -e /etc/init.d/cronosagent ] +then + service cronosagent stop + update-rc.d -f cronosagent remove + rm -f /etc/init.d/cronosagent +fi + +if [ -e /etc/systemd/system/cronosagent.service ] +then + systemctl stop cronosagent + rm -f /etc/systemd/system/cronosagent.service + systemctl daemon-reload +fi + +exit 0 \ No newline at end of file diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..33523ac --- /dev/null +++ b/debian/rules @@ -0,0 +1,7 @@ +#!/usr/bin/make -f + +#export DH_VERBOSE=1 +export DH_OPTIONS + +%: + dh $@