[Pkg-voip-commits] r1635 - asterisk/trunk/debian
Mark Purcell
msp at costa.debian.org
Fri Apr 21 15:13:39 UTC 2006
Author: msp
Date: 2006-04-21 15:13:37 +0000 (Fri, 21 Apr 2006)
New Revision: 1635
Removed:
asterisk/trunk/debian/TODO.Debian
Modified:
asterisk/trunk/debian/NEWS.Debian
asterisk/trunk/debian/README.Debian
asterisk/trunk/debian/asterisk-bristuff.postinst
asterisk/trunk/debian/asterisk-classic.postinst
asterisk/trunk/debian/asterisk-config.postinst
asterisk/trunk/debian/changelog
Log:
* Create /var/spool/asterisk & /var/lib/asterisk in debian/*.postinst
Modified: asterisk/trunk/debian/NEWS.Debian
===================================================================
--- asterisk/trunk/debian/NEWS.Debian 2006-04-21 14:54:32 UTC (rev 1634)
+++ asterisk/trunk/debian/NEWS.Debian 2006-04-21 15:13:37 UTC (rev 1635)
@@ -1,9 +1,3 @@
-H.323 support moved towards asterisk-oh323
-==========================================
-The asterisk source package no longer includes support for H323, but only for
-SIP and IAX (v1 and v2). The H323 support was reported to be mostly broken
-anyway, so please try asterisk-oh323 as a replacement for chan_h323.
-
Debian asterisk-xxx.dfsg.tar.gz
===============================
The Debian version of the upstream asterisk source has had the fpm Music on Hold
Modified: asterisk/trunk/debian/README.Debian
===================================================================
--- asterisk/trunk/debian/README.Debian 2006-04-21 14:54:32 UTC (rev 1634)
+++ asterisk/trunk/debian/README.Debian 2006-04-21 15:13:37 UTC (rev 1635)
@@ -41,21 +41,6 @@
files first.
-External Libraries
-==================
-The package no longer includes support for H.323, but for SIP and IAX (v1 and
-v2). The H.323 support was often reported to be mostly broken, so please try
-asterisk-oh323 for your asterisk configuration.
-
-
-Enabling bristuff support
-=========================
-If you wish to enable the bristuff support (when rebuilding this package
-from source), unrem the patches bristuff and libpri_bristuffed in
-debian/patches/00list. Also rem-out option_detach in the same file, as it
-conflicts with bristuff (both want to change the getopts line).
-
-
Getting started with config and more features
=============================================
Of course the default config is far from a plug'n'play for every environment.
Deleted: asterisk/trunk/debian/TODO.Debian
===================================================================
--- asterisk/trunk/debian/TODO.Debian 2006-04-21 14:54:32 UTC (rev 1634)
+++ asterisk/trunk/debian/TODO.Debian 2006-04-21 15:13:37 UTC (rev 1635)
@@ -1,24 +0,0 @@
-Asterisk/Zaptel/ libpri Debian versioning roadmap
-=================================================
-Thu Oct 20 18:19:18 BST 2005
-
-asterisk:
-1:1.2.0-beta1.dfsg-1 -> experimental
-1:1.2.0-beta1.dfsg-2 -> experimental (if debian makes changes)
-1:1.2.0-beta2.dfsg-1 -> experimental (if upstream beta release)
-1:1.2.0-rc1.dfsg-1 -> experimental (if upstream RC release)
-1:1.2.0-rc2.dfsg-1 -> experimental
-[...]
-1:1.2.0.dfsg-1 -> unstable (when upstream final release)
-1:1.2.0.dfsg-2 -> unstable (when debian release)
-
-zaptel/ libpri:
-1.2.0-0beta1-1 -> already uploaded to expiermenal
-1.2.0-0beta1-2 -> experimental (next debian release)
-1.2.0-beta2-1 -> experimental (upstream next beta release)
-1.2.0-rc1-1 -> experimental (upstream RC release)
-[...]
-1.2.0-1 -> unstable (-b when upstream makes final release)
-1.2.0-cvs2005xxxx-1 -> experimental (to fixup versioning)
-
-Mark Purcell <msp at debian.org>
Modified: asterisk/trunk/debian/asterisk-bristuff.postinst
===================================================================
--- asterisk/trunk/debian/asterisk-bristuff.postinst 2006-04-21 14:54:32 UTC (rev 1634)
+++ asterisk/trunk/debian/asterisk-bristuff.postinst 2006-04-21 15:13:37 UTC (rev 1635)
@@ -32,6 +32,7 @@
mkdir -p /var/log/asterisk/cdr-$cdrdir
fi
done
+ test -d /var/log/asterisk/ || mkdir -p /var/log/asterisk/
test -d /var/spool/asterisk/voicemail || mkdir -p /var/spool/asterisk/voicemail
test -d /var/spool/asterisk/meetme || mkdir -p /var/spool/asterisk/meetme
test -d /var/lib/asterisk || mkdir -p /var/lib/asterisk
Modified: asterisk/trunk/debian/asterisk-classic.postinst
===================================================================
--- asterisk/trunk/debian/asterisk-classic.postinst 2006-04-21 14:54:32 UTC (rev 1634)
+++ asterisk/trunk/debian/asterisk-classic.postinst 2006-04-21 15:13:37 UTC (rev 1635)
@@ -32,6 +32,7 @@
mkdir -p /var/log/asterisk/cdr-$cdrdir
fi
done
+ test -d /var/log/asterisk/ || mkdir -p /var/log/asterisk/
test -d /var/spool/asterisk/voicemail || mkdir -p /var/spool/asterisk/voicemail
test -d /var/spool/asterisk/meetme || mkdir -p /var/spool/asterisk/meetme
test -d /var/lib/asterisk || mkdir -p /var/lib/asterisk
Modified: asterisk/trunk/debian/asterisk-config.postinst
===================================================================
--- asterisk/trunk/debian/asterisk-config.postinst 2006-04-21 14:54:32 UTC (rev 1634)
+++ asterisk/trunk/debian/asterisk-config.postinst 2006-04-21 15:13:37 UTC (rev 1635)
@@ -27,8 +27,10 @@
adduser asterisk dialout
fi
+ test -d /var/log/asterisk || mkdir -p /var/log/asterisk
test -d /var/lib/asterisk || mkdir -p /var/lib/asterisk
test -d /etc/asterisk || mkdir -p /etc/asterisk
+ test -d /var/spool/asterisk/ || mkdir -p /var/spool/asterisk/
chown -R asterisk.asterisk /var/log/asterisk /var/run/asterisk \
/var/spool/asterisk /var/lib/asterisk /etc/asterisk
chmod 0660 /etc/asterisk/*.conf
Modified: asterisk/trunk/debian/changelog
===================================================================
--- asterisk/trunk/debian/changelog 2006-04-21 14:54:32 UTC (rev 1634)
+++ asterisk/trunk/debian/changelog 2006-04-21 15:13:37 UTC (rev 1635)
@@ -24,8 +24,9 @@
- Version 1.2.5 is out (Closes: #355299)
- since 1.2.0 no chan_modem (Closes: #343232)
- Undefined symbol in chan_zap.so (Closes: #339559)
+ * Create /var/spool/asterisk & /var/lib/asterisk in debian/*.postinst
- -- Mark Purcell <msp at debian.org> Fri, 21 Apr 2006 15:53:01 +0100
+ -- Mark Purcell <msp at debian.org> Fri, 21 Apr 2006 16:08:56 +0100
asterisk (1:1.2.6.dfsg-1) unstable; urgency=low
More information about the Pkg-voip-commits
mailing list