Browse Source

thinking git directory

gine 8 years ago
parent
commit
9c277f4871
3 changed files with 10 additions and 6 deletions
  1. 5 1
      .gitignore
  2. 4 4
      README.md
  3. 1 1
      pureftpd-auth.pl

+ 5 - 1
.gitignore

@@ -15,4 +15,8 @@
 # Executables
 *.exe
 *.out
-*.app
+*.app
+
+# Auth
+auth
+auth/*

+ 4 - 4
README.md

@@ -19,15 +19,15 @@ dpkg -i libcrypt-passwd-xs-perl_0.601-1_amd64.deb
 Config
 ---
 
-echo "/usr/local/ortiche/pureftpd-auth.pl" > /etc/pure-ftpd/conf/ExtAuth
+echo "/usr/local/ortiche/pureftpd-auth/pureftpd-auth.pl" > /etc/pure-ftpd/conf/ExtAuth
 echo "yes" > /etc/pure-ftpd/conf/CreateHomeDir 
 rm -fr /etc/pure-ftpd/auth/
 ln -s /etc/pure-ftpd/conf/ExtAuth /etc/pure-ftpd/auth/ExtAuth
 
 Auth
 ---
-mkdir /usr/local/ortiche/auth
-vi /usr/local/ortiche/auth/pureftpd.pl
+mkdir /usr/local/ortiche/pureftpd-auth/auth
+vi /usr/local/ortiche/pureftpd-auth/auth/pureftpd.pl
 
 <code>
 #!/usr/bin/perl
@@ -43,7 +43,7 @@ Running
 ---
 /usr/sbin/pure-ftpd -d -A -B -4 -Z -p 50000:50601 -H -Y 1 -E -k 98 -C 5 -c 30 -lextauth:/var/run/pure-ftpd/extauth.sock
 
-/usr/sbin/pure-authd -s /var/run/pure-ftpd/extauth.sock -r /usr/local/ortiche/pureftpd-auth.pl &
+/usr/sbin/pure-authd -s /var/run/pure-ftpd/extauth.sock -r /usr/local/ortiche/pureftpd-auth/pureftpd-auth.pl &
 
 
 

+ 1 - 1
pureftpd-auth.pl

@@ -18,7 +18,7 @@ use Log::Log4perl qw(get_logger :levels);
 
 ### conf
 #
-$SCRIPT_DIR="/usr/local/ortiche";
+$SCRIPT_DIR="/usr/local/ortiche/pureftpd-auth";
 $AUTH_DIR="$SCRIPT_DIR/auth";
 require "$AUTH_DIR/pureftpd.pl";