mirror of
https://github.com/azlux/log2ram
synced 2024-11-23 13:56:30 +00:00
Compare commits
9 Commits
0d626d8d2f
...
1ab2d9785e
Author | SHA1 | Date | |
---|---|---|---|
|
1ab2d9785e | ||
|
5cd873123c | ||
|
c449994e22 | ||
|
c7aef205b1 | ||
|
7f2f8d20db | ||
|
69bc7a5cbe | ||
|
02e7e6bcbd | ||
|
e38c73e2d5 | ||
|
a378dd30cb |
@ -1,6 +1,24 @@
|
|||||||
[Unit]
|
[Unit]
|
||||||
Description=Daily Log2Ram writing activities
|
Description=Daily Log2Ram writing activities
|
||||||
After=log2ram.service
|
After=log2ram.service
|
||||||
|
Documentation=https://github.com/azlux/log2ram
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
ExecStart=/bin/systemctl reload log2ram.service
|
ExecStart=/bin/systemctl reload log2ram.service
|
||||||
|
|
||||||
|
# Sandboxing
|
||||||
|
LockPersonality=true
|
||||||
|
MemoryDenyWriteExecute=true
|
||||||
|
NoNewPriviliges=true
|
||||||
|
PrivateDevices=true
|
||||||
|
PrivateNetwork=true
|
||||||
|
#May affect "Mail" in log2ram.conf.
|
||||||
|
ProtectClock=true
|
||||||
|
ProtectControlGroups=true
|
||||||
|
ProtectHostname=true
|
||||||
|
ProtectKernelLogs=true
|
||||||
|
ProtectKernelModules=true
|
||||||
|
ProtectKernelTunables=true
|
||||||
|
RestrictSUIDSGID=true
|
||||||
|
ProtectSystem=strict
|
||||||
|
ProtectHome=true
|
||||||
|
@ -6,6 +6,7 @@ After=local-fs.target
|
|||||||
Conflicts=shutdown.target reboot.target halt.target
|
Conflicts=shutdown.target reboot.target halt.target
|
||||||
RequiresMountsFor=/var/log /var/hdd.log
|
RequiresMountsFor=/var/log /var/hdd.log
|
||||||
IgnoreOnIsolate=yes
|
IgnoreOnIsolate=yes
|
||||||
|
Documentation=https://github.com/azlux/log2ram
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
Type=oneshot
|
Type=oneshot
|
||||||
@ -15,5 +16,25 @@ ExecReload=/usr/local/bin/log2ram write
|
|||||||
TimeoutStartSec=120
|
TimeoutStartSec=120
|
||||||
RemainAfterExit=yes
|
RemainAfterExit=yes
|
||||||
|
|
||||||
|
# Sandboxing
|
||||||
|
LockPersonality=true
|
||||||
|
MemoryDenyWriteExecute=true
|
||||||
|
NoNewPriviliges=true
|
||||||
|
PrivateDevices=true
|
||||||
|
PrivateNetwork=true
|
||||||
|
#May break "MAIL" in log2ram.conf if it points to non-local web address.
|
||||||
|
ProtectClock=true
|
||||||
|
ProtectControlGroups=true
|
||||||
|
ProtectHostname=true
|
||||||
|
ProtectKernelLogs=true
|
||||||
|
ProtectKernelModules=true
|
||||||
|
ProtectKernelTunables=true
|
||||||
|
RestrictSUIDSGID=true
|
||||||
|
ProtectSystem=true
|
||||||
|
# ALT: ProtectSystem=full # needs rw whitelisting for /var/hdd.log/
|
||||||
|
ProtectHome=true
|
||||||
|
#may cause breakage in situations wherein user has configured log2ram to also copy logs from $HOME.
|
||||||
|
#can probably fix with systemctl edit to whitelist relevant dirs. See: ReadWritePaths=
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=sysinit.target
|
WantedBy=sysinit.target
|
||||||
|
Loading…
Reference in New Issue
Block a user