diff options
author | Matt Selsky <selsky@columbia.edu> | 2011-10-15 14:17:54 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2011-10-15 14:17:54 +0200 |
commit | 21c07d4c63f493288bef6d7af42f01fc67c65108 (patch) | |
tree | 265faf9a33f3c6a60bc8e9b2873af5710578760a | |
parent | bbdce8cfde708e70984702246ad7b9723680aa8e (diff) | |
download | bugs-21c07d4c63f493288bef6d7af42f01fc67c65108.tar bugs-21c07d4c63f493288bef6d7af42f01fc67c65108.tar.gz bugs-21c07d4c63f493288bef6d7af42f01fc67c65108.tar.bz2 bugs-21c07d4c63f493288bef6d7af42f01fc67c65108.tar.xz bugs-21c07d4c63f493288bef6d7af42f01fc67c65108.zip |
Bug 445804: Suggested crontab configuration opens security hole
r/a=mkanat
-rw-r--r-- | docs/en/xml/installation.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/en/xml/installation.xml b/docs/en/xml/installation.xml index 51ce88113..e43c567b8 100644 --- a/docs/en/xml/installation.xml +++ b/docs/en/xml/installation.xml @@ -1362,7 +1362,7 @@ c:\perl\bin\perl.exe -xc:\bugzilla -wT "%s" %s daily at 5 after midnight: </para> - <programlisting>5 0 * * * cd <your-bugzilla-directory> ; ./collectstats.pl</programlisting> + <programlisting>5 0 * * * cd <your-bugzilla-directory> && ./collectstats.pl</programlisting> <para> After two days have passed you'll be able to view bug graphs from @@ -1393,7 +1393,7 @@ c:\perl\bin\perl.exe -xc:\bugzilla -wT "%s" %s graphs. This example runs it at 12.55am. </para> - <programlisting>55 0 * * * cd <your-bugzilla-directory> ; ./whineatnews.pl</programlisting> + <programlisting>55 0 * * * cd <your-bugzilla-directory> && ./whineatnews.pl</programlisting> <note> <para> @@ -1423,7 +1423,7 @@ c:\perl\bin\perl.exe -xc:\bugzilla -wT "%s" %s graphs. This example runs it every 15 minutes. </para> - <programlisting>*/15 * * * * cd <your-bugzilla-directory> ; ./whine.pl</programlisting> + <programlisting>*/15 * * * * cd <your-bugzilla-directory> && ./whine.pl</programlisting> <note> <para> |