davical/rc.davical

Sat, 24 Mar 2012 21:40:49 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 24 Mar 2012 21:40:49 +0100
changeset 414
fd611cde817f
permissions
-rw-r--r--

Introduce many changes to the buildconf and source code including:
(01) clean up, update, and partially update default config files,
(02) seems that Melware is unable to perform release engineering so
update chan_capi to new daily snapshot to solve echo problems,
(03) correct Asterisk inadequate hard coded gmime version check,
(04) force postgresql pthreads linkage to solve build problem,
(05) remove buggy hard coded LibXML configure definitions,
(06) remove local architecture specification to allow GCC
internal logic to determine proper CPU type instead,
(07) remove vendor sound install target causing uncontrolled
downloads and non RPM managed file installation,
(08) solve long outstanding bug in tcptls causing Asterisk
to ignore any intermediate CA certificate signatures,
(09) back out Digium engineering team's bright idea of replacing the
very portable and pervasive POSIX rand(1) with ast_random(), and
then not even implementing it causing all references to fail in
platforms not providing the very new POSIX.1-2008 mkdtemp(3)
function only distributed by BSD and some Linux,
(10) withdraw advanced linker symbol manipulations from SVR5 builds
until either Binutils supports hybrid versioned and anonymous
linker scripts or GCC stops hard coding versioned linker scripts,
(11) correct missing library linkage, some tailored to a specific OS,
(12) remove outdated logic for the no longer distributed gmime-config(1),
(13) remove local gmime buildconf hacks now that Asterisk has corrected
their own build configuration to almost portably support gmime,
(14) solve build problems relating to undetected LibXML paths,
(15) correct erroneous out of tree include definitions,
(16) improve some variable and comment naming,
(17) simplify sound language path hierarchy creation,
and correct australian english installation logic.

michael@290 1 #!@l_prefix@/bin/openpkg rc
michael@290 2 ##
michael@290 3 ## rc.davical -- Run-Commands
michael@290 4 ##
michael@290 5
michael@290 6 %config
michael@290 7 davical_enable="$openpkg_rc_def"
michael@290 8
michael@290 9 %status -u @l_susr@ -o
michael@290 10 davical_usable="no"
michael@290 11 davical_active="no"
michael@290 12 @l_prefix@/sbin/apache -t \
michael@290 13 -f @l_prefix@/etc/davical/davical-apache.conf 2>/dev/null && \
michael@290 14 davical_usable="yes"
michael@290 15 [ -f @l_prefix@/var/davical/run/apache.pid ] && \
michael@290 16 kill -0 `cat @l_prefix@/var/davical/run/apache.pid` && \
michael@290 17 davical_active="yes"
michael@290 18 echo "davical_enable=\"$davical_enable\""
michael@290 19 echo "davical_usable=\"$davical_usable\""
michael@290 20 echo "davical_active=\"$davical_active\""
michael@290 21
michael@290 22 %start -u @l_susr@
michael@290 23 rcService davical enable yes || exit 0
michael@290 24 rcService davical active yes && exit 0
michael@290 25 @l_prefix@/sbin/apache @with_ssl@ \
michael@290 26 -f @l_prefix@/etc/davical/davical-apache.conf
michael@290 27
michael@290 28 %stop -u @l_susr@
michael@290 29 rcService davical enable yes || exit 0
michael@290 30 rcService davical active no && exit 0
michael@290 31 [ -f @l_prefix@/var/davical/run/apache.pid ] && \
michael@290 32 kill -TERM `cat @l_prefix@/var/davical/run/apache.pid`
michael@290 33 sleep 2
michael@290 34
michael@290 35 %restart -u @l_susr@
michael@290 36 rcService davical enable yes || exit 0
michael@290 37 rcService davical active no && exit 0
michael@290 38 rc davical stop start
michael@290 39

mercurial