r3085 - trunk/varnish-cache/etc

petter at projects.linpro.no petter at projects.linpro.no
Tue Aug 12 15:01:41 CEST 2008


Author: petter
Date: 2008-08-12 15:01:41 +0200 (Tue, 12 Aug 2008)
New Revision: 3085

Modified:
   trunk/varnish-cache/etc/Makefile.am
Log:
Added suppresion of output when generating the default.vcl. Fixes #287


Modified: trunk/varnish-cache/etc/Makefile.am
===================================================================
--- trunk/varnish-cache/etc/Makefile.am	2008-08-12 12:57:00 UTC (rev 3084)
+++ trunk/varnish-cache/etc/Makefile.am	2008-08-12 13:01:41 UTC (rev 3085)
@@ -5,7 +5,7 @@
 dist_data_DATA = default.vcl
 
 default.vcl:	$(top_srcdir)/bin/varnishd/default.vcl
-	echo -e "This is a basic VCL configuration file for varnish.  See the vcl(7)\n\
+	@echo -e "This is a basic VCL configuration file for varnish.  See the vcl(7)\n\
 man page for details on VCL syntax and semantics.\n\
 \n\
 Default backend definition.  Set this to point to your content\n\
@@ -19,6 +19,6 @@
 Below is a commented-out copy of the default VCL logic.  If you\n\
 redefine any of these subroutines, the built-in logic will be\n\
 appended to your code.\n" > tmp.vcl
-	sed -n '/vcl_recv/,$$p' $(top_srcdir)/bin/varnishd/default.vcl >> tmp.vcl
-	sed 's/^\(.*\)$$/#\1/' tmp.vcl > default.vcl
-	rm tmp.vcl
+	@sed -n '/vcl_recv/,$$p' $(top_srcdir)/bin/varnishd/default.vcl >> tmp.vcl
+	@sed 's/^\(.*\)$$/#\1/' tmp.vcl > default.vcl
+	@rm tmp.vcl




More information about the varnish-commit mailing list