init from 4 old repositories

This commit is contained in:
2019-08-05 16:07:57 +03:00
parent c750e17675
commit fa1425a67b
20 changed files with 378 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
<?php
$mountCheck = "ls /media/veracrypt/check/";
// if file 'accept' exists, then disk is mounted
if (exec($mountCheck) == 'accept') $mountStatus = "mounted";
else $mountStatus = "dismounted";
$result = $mountStatus;
echo $result;
?>