[svn-commits] tilghman: trunk r133400 - in /trunk: Makefile contrib/scripts/asterisk.logrotate

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Jul 24 00:21:01 CDT 2008


Author: tilghman
Date: Thu Jul 24 00:21:00 2008
New Revision: 133400

URL: http://svn.digium.com/view/asterisk?view=rev&rev=133400
Log:
Build the logrotate script according to paths
(Closes issue #13147)

Modified:
    trunk/Makefile
    trunk/contrib/scripts/asterisk.logrotate

Modified: trunk/Makefile
URL: http://svn.digium.com/view/asterisk/trunk/Makefile?view=diff&rev=133400&r1=133399&r2=133400
==============================================================================
--- trunk/Makefile (original)
+++ trunk/Makefile Thu Jul 24 00:21:00 2008
@@ -762,7 +762,9 @@
 	if [ ! -d $(ASTETCDIR)/../logrotate.d ]; then \
 		mkdir $(ASTETCDIR)/../logrotate.d ; \
 	fi
-	install -m 0644 contrib/scripts/asterisk.logrotate $(ASTETCDIR)/../logrotate.d/asterisk
+	sed 's#__LOGDIR__#$(ASTLOGDIR)#g' < contrib/scripts/asterisk.logrotate | sed 's#__SBINDIR__#$(ASTSBINDIR)#g' > contrib/scripts/asterisk.logrotate.tmp
+	install -m 0644 contrib/scripts/asterisk.logrotate.tmp $(ASTETCDIR)/../logrotate.d/asterisk
+	rm -f contrib/scripts/asterisk.logrotate.tmp
 
 config:
 	@if [ "${OSARCH}" = "linux-gnu" ]; then \

Modified: trunk/contrib/scripts/asterisk.logrotate
URL: http://svn.digium.com/view/asterisk/trunk/contrib/scripts/asterisk.logrotate?view=diff&rev=133400&r1=133399&r2=133400
==============================================================================
--- trunk/contrib/scripts/asterisk.logrotate (original)
+++ trunk/contrib/scripts/asterisk.logrotate Thu Jul 24 00:21:00 2008
@@ -1,4 +1,4 @@
-/var/log/asterisk/debug /var/log/asterisk/console /var/log/asterisk/full /var/log/asterisk/debug /var/log/asterisk/*log {
+__LOGDIR__/debug __LOGDIR__/console __LOGDIR__/full __LOGDIR__/messages __LOGDIR__/*log {
 	weekly
 	missingok
 	rotate 52
@@ -8,6 +8,6 @@
 	create 640 root root 
 	sharedscripts
 	postrotate
-		/usr/sbin/asterisk -rx 'logger reload' > /dev/null 2> /dev/null	
+		__SBINDIR__/asterisk -rx 'logger reload' > /dev/null 2> /dev/null	
 	endscript
-} 
+} 




More information about the svn-commits mailing list