|
From: <jgr...@us...> - 2003-11-10 20:55:39
|
Update of /cvsroot/popfile/engine/POPFile
In directory sc8-pr-cvs1:/tmp/cvs-serv15149/POPFile
Modified Files:
Configuration.pm
Log Message:
./ defaults for POPFILE_ROOT and POPFILE_USER
Index: Configuration.pm
===================================================================
RCS file: /cvsroot/popfile/engine/POPFile/Configuration.pm,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -d -r1.31 -r1.32
*** Configuration.pm 10 Nov 2003 20:48:16 -0000 1.31
--- Configuration.pm 10 Nov 2003 20:55:35 -0000 1.32
***************
*** 97,100 ****
--- 97,108 ----
$self->{popfile_user__} = $ENV{POPFILE_USER};
+ if ( !defined( $self->{popfile_root__} ) ) {
+ $self->{popfile_root__} = './';
+ }
+
+ if ( !defined( $self->{popfile_user__} ) ) {
+ $self->{popfile_user__} = './';
+ }
+
# This is the location where we store the PID of POPFile in a file
# called popfile.pid
|