this is silly, but really, seriously, patch attached this time.

On Tue, Sep 15, 2009 at 9:28 PM, Paul Querna <p...@querna.org> wrote:
> The README.txt provides a great getting started guide, but chown
> username -R path is invalid syntax on *BSD based (including OSX)
> operating systems.
>
> the example command should be:
>   sudo chown -R `whoami` /var/cassandra
>
> Atttached patch fixes it :)
>
> Thanks,
>
> Paul
>
Index: README.txt
===================================================================
--- README.txt  (revision 815600)
+++ README.txt  (working copy)
@@ -22,7 +22,7 @@
   * tar -zxvf cassandra-$VERSION.tgz
   * cd cassandra-$VERSION
   * sudo mkdir -p /var/cassandra/logs
-  * sudo chown `whoami` -R /var/cassandra
+  * sudo chown -R `whoami` /var/cassandra
 
 Note: The sample configuration files in conf/ determine the file-system 
 locations Cassandra uses for logging and data storage. You are free to

Reply via email to