[Lunar-commits] CVS: moonbase/ftp/vsftpd CONFIGURE,1.2,1.3

Auke Kok sofar at lunar-linux.org
Mon Feb 23 10:50:06 GMT 2004


Update of /var/cvs/lunar/moonbase/ftp/vsftpd
In directory dbguin.lunar-linux.org:/tmp/cvs-serv28284

Modified Files:
	CONFIGURE 
Log Message:
~ftp is not always /home/ftp


Index: CONFIGURE
===================================================================
RCS file: /var/cvs/lunar/moonbase/ftp/vsftpd/CONFIGURE,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- CONFIGURE	10 Nov 2002 07:15:30 -0000	1.2
+++ CONFIGURE	23 Feb 2004 10:50:04 -0000	1.3
@@ -1,12 +1,12 @@
-if ! [[ -d /usr/share/empty ]]; then
+if [ ! -d /usr/share/empty ] ; then
   mkdir /usr/share/empty
 fi
 
-if ! [[ -d /home/ftp ]]; then
-  mkdir /home/ftp
-  chown root.root /home/ftp
-  chmod og-w /home/ftp
+if [ ! -d ~ftp ] ; then
+  mkdir ~ftp
+  chown root.root ~ftp
+  chmod og-w ~ftp
 else
-  chown root.root /home/ftp
-  chmod og-w /home/ftp
+  chown root.root ~ftp
+  chmod og-w ~ftp
 fi    



More information about the Lunar-commits mailing list