Revert "Added start, write and stop logging"

This reverts commit 4479c11a41.
This commit is contained in:
Nathan Huizinga 2017-12-10 22:37:51 +01:00
parent 4479c11a41
commit 8e52dfe231
1 changed files with 0 additions and 16 deletions

16
log2ram
View File

@ -56,36 +56,20 @@ case "$1" in
mount --bind $RAM_LOG/ $HDD_LOG/
mount --make-private $HDD_LOG/
wait_for $HDD_LOG
rm -f $LOG2RAM_LOG
mount -t tmpfs -o nosuid,noexec,nodev,mode=0755,size=$SIZE log2ram $RAM_LOG/
wait_for $RAM_LOG
echo "> Starting..." | $LOG_OUTPUT
syncFromDisk
echo "> Starting: done." | $LOG_OUTPUT
;;
stop)
echo "> Stopping..." | $LOG_OUTPUT
syncToDisk
echo "> Stopping: done." | $LOG_OUTPUT
umount -l $RAM_LOG/
umount -l $HDD_LOG/
;;
write)
echo "> Writing..." | $LOG_OUTPUT
syncToDisk
echo "> Writing: done." | $LOG_OUTPUT
;;
*)