From bfd35fc31d2a87b328f7392fd181a93bee50dda2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Franti=C5=A1ek=20Dvo=C5=99=C3=A1k?= Date: Sat, 19 Oct 2013 23:24:06 +0200 Subject: [PATCH] Enable all certificates by default (we have file-level permissions now). --- src/Vfs.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Vfs.cpp b/src/Vfs.cpp index 10493f8..258b54a 100644 --- a/src/Vfs.cpp +++ b/src/Vfs.cpp @@ -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); } -- 1.8.2.3