Enable all certificates by default (we have file-level permissions now).
authorFrantišek Dvořák <valtri@civ.zcu.cz>
Sat, 19 Oct 2013 21:24:06 +0000 (23:24 +0200)
committerFrantišek Dvořák <valtri@civ.zcu.cz>
Sun, 23 Feb 2014 13:16:19 +0000 (14:16 +0100)
src/Vfs.cpp

index 10493f8..258b54a 100644 (file)
@@ -37,6 +37,10 @@ VfsFactory::VfsFactory() throw (DmException)
   
   this->hostName_ = hent->h_name;
 
+  // Default configuration values
+  this->allow_ = ".*";
+  this->allowWrite_ = ".*";
+
   openlog("dmlite-vfs-plugin", LOG_PID, LOG_USER);
 }