Removing verbose chmod.

This commit is contained in:
sergiotarxz 2024-07-17 01:07:56 +02:00
parent dc231008b6
commit e772475345

View File

@ -48,7 +48,7 @@ sub _db_path($class) {
}
$db_path .= '.vpnmanager/db.sqlite';
path($db_path)->parent->mkpath;
system 'chmod', '-v', '700', path($db_path)->parent;
system 'chmod', '700', path($db_path)->parent;
return $db_path;
}