mirror of
https://github.com/azlux/log2ram.git
synced 2023-10-10 13:37:24 +02:00
Fixed consistent naming of /var/hdd.log
This commit is contained in:
parent
db049c32eb
commit
658161bb04
@ -36,7 +36,7 @@ mount
|
|||||||
|
|
||||||
If you have issue with apache2 , you can try to add `apache2.service` next to other services on the `Before` parameter into /etc/systemd/system/log2ram.service it will solve the pb
|
If you have issue with apache2 , you can try to add `apache2.service` next to other services on the `Before` parameter into /etc/systemd/system/log2ram.service it will solve the pb
|
||||||
|
|
||||||
The log for log2ram will be write here : `/var/log.hdd/log2ram.log`
|
The log for log2ram will be write here : `/var/hdd.log/log2ram.log`
|
||||||
|
|
||||||
###### Now, muffins for everyone !
|
###### Now, muffins for everyone !
|
||||||
|
|
||||||
|
@ -11,9 +11,9 @@ then
|
|||||||
systemctl enable log2ram
|
systemctl enable log2ram
|
||||||
cp log2ram.hourly /etc/cron.hourly/log2ram
|
cp log2ram.hourly /etc/cron.hourly/log2ram
|
||||||
chmod +x /etc/cron.hourly/log2ram
|
chmod +x /etc/cron.hourly/log2ram
|
||||||
|
|
||||||
if [ -d /var/log.hdd ]; then
|
if [ -d /var/hdd.log ]; then
|
||||||
rm -r /var/log.hdd
|
rm -r /var/hdd.log
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "##### Reboot to activate log2ram #####"
|
echo "##### Reboot to activate log2ram #####"
|
||||||
|
23
log2ram
23
log2ram
@ -5,11 +5,12 @@
|
|||||||
HDD_LOG=/var/hdd.log
|
HDD_LOG=/var/hdd.log
|
||||||
RAM_LOG=/var/log
|
RAM_LOG=/var/log
|
||||||
|
|
||||||
LOG2RAM_LOG="${HDD_LOG}/log2ram.log"
|
LOG_NAME="log2ram.log"
|
||||||
|
LOG2RAM_LOG="${HDD_LOG}/${LOG_NAME}"
|
||||||
LOG_OUTPUT="tee -a $LOG2RAM_LOG"
|
LOG_OUTPUT="tee -a $LOG2RAM_LOG"
|
||||||
|
|
||||||
isSafe () {
|
isSafe () {
|
||||||
[ -d $HDD_LOG/ ] || echo "ERROR: $HDD_LOG/ doesn't exist! Can't sync."
|
[ -d $HDD_LOG/ ] || echo "ERROR: $HDD_LOG/ doesn't exist! Can't sync."
|
||||||
[ -d $HDD_LOG/ ] || exit 1
|
[ -d $HDD_LOG/ ] || exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -17,7 +18,7 @@ syncToDisk () {
|
|||||||
isSafe
|
isSafe
|
||||||
|
|
||||||
if [ "$USE_RSYNC" = true ]; then
|
if [ "$USE_RSYNC" = true ]; then
|
||||||
rsync -aXWv --delete --exclude log2ram.log --links $RAM_LOG/ $HDD_LOG/ 2>&1 | $LOG_OUTPUT
|
rsync -aXWv --delete --exclude $LOG_NAME --links $RAM_LOG/ $HDD_LOG/ 2>&1 | $LOG_OUTPUT
|
||||||
else
|
else
|
||||||
cp -rfup $RAM_LOG/ -T $HDD_LOG/ 2>&1 | $LOG_OUTPUT
|
cp -rfup $RAM_LOG/ -T $HDD_LOG/ 2>&1 | $LOG_OUTPUT
|
||||||
fi
|
fi
|
||||||
@ -30,14 +31,14 @@ syncFromDisk () {
|
|||||||
echo "ERROR: RAM disk too small. Can't sync."
|
echo "ERROR: RAM disk too small. Can't sync."
|
||||||
umount -l $RAM_LOG/
|
umount -l $RAM_LOG/
|
||||||
umount -l $HDD_LOG/
|
umount -l $HDD_LOG/
|
||||||
if [ "$MAIL" = true ]; then
|
if [ "$MAIL" = true ]; then
|
||||||
echo "LOG2RAM : No place on RAM anymore, fallback on the disk" | mail -s 'Log2Ram Error' root;
|
echo "LOG2RAM : No place on RAM anymore, fallback on the disk" | mail -s 'Log2Ram Error' root;
|
||||||
fi
|
fi
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$USE_RSYNC" = true ]; then
|
if [ "$USE_RSYNC" = true ]; then
|
||||||
rsync -aXWv --delete --exclude log2ram.log --links $HDD_LOG/ $RAM_LOG/ 2>&1 | $LOG_OUTPUT
|
rsync -aXWv --delete --exclude $LOG_NAME --links $HDD_LOG/ $RAM_LOG/ 2>&1 | $LOG_OUTPUT
|
||||||
else
|
else
|
||||||
cp -rfup $HDD_LOG/ -T $RAM_LOG/ 2>&1 | $LOG_OUTPUT
|
cp -rfup $HDD_LOG/ -T $RAM_LOG/ 2>&1 | $LOG_OUTPUT
|
||||||
fi
|
fi
|
||||||
@ -45,17 +46,17 @@ syncFromDisk () {
|
|||||||
|
|
||||||
wait_for () {
|
wait_for () {
|
||||||
while ! grep -qs $1 /proc/mounts; do
|
while ! grep -qs $1 /proc/mounts; do
|
||||||
sleep 0.1
|
sleep 0.1
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
case "$1" in
|
case "$1" in
|
||||||
start)
|
start)
|
||||||
[ -d $HDD_LOG/ ] || mkdir $HDD_LOG/
|
[ -d $HDD_LOG/ ] || mkdir $HDD_LOG/
|
||||||
rm -f $LOG2RAM_LOG
|
|
||||||
mount --bind $RAM_LOG/ $HDD_LOG/
|
mount --bind $RAM_LOG/ $HDD_LOG/
|
||||||
mount --make-private $HDD_LOG/
|
mount --make-private $HDD_LOG/
|
||||||
wait_for $HDD_LOG
|
wait_for $HDD_LOG
|
||||||
|
rm -f $LOG2RAM_LOG
|
||||||
mount -t tmpfs -o nosuid,noexec,nodev,mode=0755,size=$SIZE log2ram $RAM_LOG/
|
mount -t tmpfs -o nosuid,noexec,nodev,mode=0755,size=$SIZE log2ram $RAM_LOG/
|
||||||
wait_for $RAM_LOG
|
wait_for $RAM_LOG
|
||||||
syncFromDisk
|
syncFromDisk
|
||||||
@ -70,7 +71,7 @@ case "$1" in
|
|||||||
write)
|
write)
|
||||||
syncToDisk
|
syncToDisk
|
||||||
;;
|
;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
echo "Usage: log2ram {start|stop|write}" >&2
|
echo "Usage: log2ram {start|stop|write}" >&2
|
||||||
exit 1
|
exit 1
|
||||||
|
@ -8,6 +8,11 @@ then
|
|||||||
rm /usr/local/bin/log2ram
|
rm /usr/local/bin/log2ram
|
||||||
rm /etc/log2ram.conf
|
rm /etc/log2ram.conf
|
||||||
rm /etc/cron.hourly/log2ram
|
rm /etc/cron.hourly/log2ram
|
||||||
|
|
||||||
|
if [ -d /var/hdd.log ]; then
|
||||||
|
rm -r /var/hdd.log
|
||||||
|
fi
|
||||||
|
|
||||||
echo "##### Reboot isn't needed #####"
|
echo "##### Reboot isn't needed #####"
|
||||||
else
|
else
|
||||||
echo "You need to be ROOT (sudo can be used)"
|
echo "You need to be ROOT (sudo can be used)"
|
||||||
|
Loading…
Reference in New Issue
Block a user