Commit a404889c authored by Tollef Fog Heen's avatar Tollef Fog Heen

Be consistent about naming

Try to use the name "Varnish Cache" rather than "Varnish HTTP
accelerator" and be consistent about this everywhere.



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@5425 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent bae18246
This is the Varnish high-performance HTTP accelerator. This is Varnish Cache, the high-performance HTTP accelerator.
Documentation and additional information about Varnish is available on Documentation and additional information about Varnish is available on
http://www.varnish-cache.org/ http://www.varnish-cache.org/
......
...@@ -99,7 +99,7 @@ mcf_banner(struct cli *cli, const char *const *av, void *priv) ...@@ -99,7 +99,7 @@ mcf_banner(struct cli *cli, const char *const *av, void *priv)
(void)av; (void)av;
(void)priv; (void)priv;
cli_out(cli, "-----------------------------\n"); cli_out(cli, "-----------------------------\n");
cli_out(cli, "Varnish HTTP accelerator CLI.\n"); cli_out(cli, "Varnish Cache CLI.\n");
cli_out(cli, "-----------------------------\n"); cli_out(cli, "-----------------------------\n");
cli_out(cli, "%s\n", vsb_data(vident) + 1); cli_out(cli, "%s\n", vsb_data(vident) + 1);
cli_out(cli, "\n"); cli_out(cli, "\n");
......
...@@ -3,7 +3,7 @@ varnishstat ...@@ -3,7 +3,7 @@ varnishstat
=========== ===========
--------------------------- ---------------------------
HTTP accelerator statistics Varnish Cache statistics
--------------------------- ---------------------------
:Author: Dag-Erling Smørgrav :Author: Dag-Erling Smørgrav
......
...@@ -20,7 +20,7 @@ DESCRIPTION ...@@ -20,7 +20,7 @@ DESCRIPTION
=========== ===========
The varnishtest program is a script driven program used to test the The varnishtest program is a script driven program used to test the
varnish HTTP accelerator. Varnish Cache.
The varnishtest program, when started and given one or more script The varnishtest program, when started and given one or more script
files, can create a number of threads representing backends, some files, can create a number of threads representing backends, some
......
...@@ -20,8 +20,8 @@ DESCRIPTION ...@@ -20,8 +20,8 @@ DESCRIPTION
=========== ===========
The VCL language is a small domain-specific language designed to be The VCL language is a small domain-specific language designed to be
used to define request handling and document caching policies for the used to define request handling and document caching policies for
Varnish HTTP accelerator. Varnish Cache.
When a new configuration is loaded, the varnishd management process When a new configuration is loaded, the varnishd management process
translates the VCL code to C and compiles it to a shared object which translates the VCL code to C and compiles it to a shared object which
......
...@@ -30,7 +30,7 @@ listening on its port.:: ...@@ -30,7 +30,7 @@ listening on its port.::
Platform: Linux,2.6.32-21-generic,i686,-smalloc,-hcritbit Platform: Linux,2.6.32-21-generic,i686,-smalloc,-hcritbit
200 193 200 193
----------------------------- -----------------------------
Varnish HTTP accelerator CLI. Varnish Cache CLI.
----------------------------- -----------------------------
Type 'help' for command list. Type 'help' for command list.
Type 'quit' to close CLI session. Type 'quit' to close CLI session.
......
#! /bin/sh #! /bin/sh
# #
# varnish Control the varnish HTTP accelerator # varnish Control the Varnish Cache
# #
# chkconfig: - 90 10 # chkconfig: - 90 10
# description: Varnish is a high-perfomance HTTP accelerator # description: Varnish is a high-perfomance HTTP accelerator
...@@ -45,7 +45,7 @@ start() { ...@@ -45,7 +45,7 @@ start() {
echo $config not found echo $config not found
exit 6 exit 6
fi fi
echo -n "Starting varnish HTTP accelerator: " echo -n "Starting Varnish Cache: "
# Open files (usually 1024, which is way too small for varnish) # Open files (usually 1024, which is way too small for varnish)
ulimit -n ${NFILES:-131072} ulimit -n ${NFILES:-131072}
...@@ -76,7 +76,7 @@ start() { ...@@ -76,7 +76,7 @@ start() {
} }
stop() { stop() {
echo -n "Stopping varnish HTTP accelerator: " echo -n "Stopping Varnish Cache: "
killproc -p $pidfile $prog killproc -p $pidfile $prog
retval=$? retval=$?
echo echo
......
...@@ -28,9 +28,9 @@ Requires(preun): initscripts ...@@ -28,9 +28,9 @@ Requires(preun): initscripts
Requires: gcc Requires: gcc
%description %description
This is the Varnish high-performance HTTP accelerator. Documentation This is Varnish Cache, a high-performance HTTP accelerator.
wiki and additional information about Varnish is available on the following Documentation wiki and additional information about Varnish is
web site: http://www.varnish-cache.org/ available on the following web site: http://www.varnish-cache.org/
%package libs %package libs
Summary: Libraries for %{name} Summary: Libraries for %{name}
...@@ -40,7 +40,7 @@ BuildRequires: ncurses-devel ...@@ -40,7 +40,7 @@ BuildRequires: ncurses-devel
%description libs %description libs
Libraries for %{name}. Libraries for %{name}.
Varnish is a high-performance HTTP accelerator. Varnish Cache is a high-performance HTTP accelerator.
%package libs-devel %package libs-devel
Summary: Development files for %{name}-libs Summary: Development files for %{name}-libs
...@@ -50,7 +50,7 @@ Requires: varnish-libs = %{version}-%{release} ...@@ -50,7 +50,7 @@ Requires: varnish-libs = %{version}-%{release}
%description libs-devel %description libs-devel
Development files for %{name}-libs Development files for %{name}-libs
Varnish is a high-performance HTTP accelerator Varnish Cache is a high-performance HTTP accelerator
%package docs %package docs
Summary: Documentation files for %name Summary: Documentation files for %name
...@@ -68,7 +68,7 @@ Documentation files for %name ...@@ -68,7 +68,7 @@ Documentation files for %name
# #
#%description libs-static #%description libs-static
#Files for static linking of varnish library functions #Files for static linking of varnish library functions
#Varnish is a high-performance HTTP accelerator #Varnish Cache is a high-performance HTTP accelerator
%prep %prep
#%setup -q #%setup -q
...@@ -245,7 +245,7 @@ rm -rf %{buildroot} ...@@ -245,7 +245,7 @@ rm -rf %{buildroot}
getent group varnish >/dev/null || groupadd -r varnish getent group varnish >/dev/null || groupadd -r varnish
getent passwd varnish >/dev/null || \ getent passwd varnish >/dev/null || \
useradd -r -g varnish -d /var/lib/varnish -s /sbin/nologin \ useradd -r -g varnish -d /var/lib/varnish -s /sbin/nologin \
-c "Varnish http accelerator user" varnish -c "Varnish Cache" varnish
exit 0 exit 0
%post %post
......
#! /bin/sh #! /bin/sh
# #
# varnishlog Control the varnish logging daemon # varnishlog Control the Varnish logging daemon
# #
# chkconfig: - 90 10 # chkconfig: - 90 10
# description: Varnish logging daemon # description: Varnish Cache logging daemon
# processname: varnishlog # processname: varnishlog
# config: # config:
# pidfile: /var/run/varnish/varnishlog.pid # pidfile: /var/run/varnish/varnishlog.pid
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
# Required-Start: $network $local_fs $remote_fs # Required-Start: $network $local_fs $remote_fs
# Required-Stop: $network $local_fs $remote_fs # Required-Stop: $network $local_fs $remote_fs
# Short-Description: start and stop varnishlog # Short-Description: start and stop varnishlog
# Description: Varnish HTTP accelerator logging daemon # Description: Varnish Cache logging daemon
### END INIT INFO ### END INIT INFO
# Source function library. # Source function library.
......
#! /bin/sh #! /bin/sh
# #
# varnishncsa Control the varnish nsca logging daemon # varnishncsa Control the Varnish NSCA logging daemon
# #
# chkconfig: - 90 10 # chkconfig: - 90 10
# description: Varnish logging daemon # description: Varnish Cache logging daemon
# processname: varnishncsa # processname: varnishncsa
# config: # config:
# pidfile: /var/run/varnish/varnishncsa.pid # pidfile: /var/run/varnish/varnishncsa.pid
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
# Required-Start: $network $local_fs $remote_fs # Required-Start: $network $local_fs $remote_fs
# Required-Stop: $network $local_fs $remote_fs # Required-Stop: $network $local_fs $remote_fs
# Short-Description: start and stop varnishncsa # Short-Description: start and stop varnishncsa
# Description: Varnish HTTP accelerator logging daemon # Description: Varnish Cache NSCA logging daemon
### END INIT INFO ### END INIT INFO
# Source function library. # Source function library.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment