Просмотр исходного кода
Update log2ram.initd
Custom function write() to avoid restart of log2ram via cron
pull/94/head
MegaV0lt
5 лет назад
committed by
GitHub
Родитель
Сommit
ea323c852d
Не найден GPG ключ соответствующий данной подписи
Идентификатор GPG ключа: 4AEE18F83AFDEB23
1 измененных файлов:
4 добавлений и
1 удалений
-
log2ram.initd
|
|
@@ -5,6 +5,9 @@ |
|
|
|
|
|
|
|
description="Store logfiles in RAM to minimize writes to disk." |
|
|
|
|
|
|
|
# Command is available when the service is started |
|
|
|
extra_started_commands="write" |
|
|
|
|
|
|
|
depend() { |
|
|
|
need localmount |
|
|
|
before logger |
|
|
@@ -22,7 +25,7 @@ stop() { |
|
|
|
eend $? |
|
|
|
} |
|
|
|
|
|
|
|
restart() { |
|
|
|
write() { |
|
|
|
ebegin "Syncing logs to disk" |
|
|
|
/usr/local/bin/log2ram write |
|
|
|
eend $? |
|
|
|