]> err.no Git - varnish/commitdiff
Added suppresion of output when generating the default.vcl. Fixes #287
authorpetter <petter@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Tue, 12 Aug 2008 13:01:41 +0000 (13:01 +0000)
committerpetter <petter@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Tue, 12 Aug 2008 13:01:41 +0000 (13:01 +0000)
git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@3085 d4fa192b-c00b-0410-8231-f00ffab90ce4

varnish-cache/etc/Makefile.am

index 22047a6a970561f62a0740e5f3988637d8519d6c..af121b14b124a59ce40b2a01695dd4ac7b320321 100644 (file)
@@ -5,7 +5,7 @@ EXTRA_DIST = zope-plone.vcl
 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 @@ backend default {\n\
 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