mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-11-23 23:10:57 +07:00
readahead: when doing a system update drop readahead file
This commit is contained in:
parent
07719a21b6
commit
1897573598
@ -2379,6 +2379,7 @@ rootlibexec_PROGRAMS += \
|
||||
systemd-readahead-replay
|
||||
|
||||
dist_systemunit_DATA += \
|
||||
units/systemd-readahead-drop.service \
|
||||
units/systemd-readahead-done.timer
|
||||
|
||||
nodist_systemunit_DATA += \
|
||||
|
@ -22,3 +22,4 @@ OOMScoreAdjust=1000
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
||||
Also=systemd-readahead-drop.service
|
||||
|
18
units/systemd-readahead-drop.service
Normal file
18
units/systemd-readahead-drop.service
Normal file
@ -0,0 +1,18 @@
|
||||
# This file is part of systemd.
|
||||
#
|
||||
# systemd is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the GNU Lesser General Public License as published by
|
||||
# the Free Software Foundation; either version 2.1 of the License, or
|
||||
# (at your option) any later version.
|
||||
|
||||
[Unit]
|
||||
Description=Drop Read-Ahead Data
|
||||
ConditionPathExists=/.readahead
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
ExecStart=/bin/rm -f /.readahead
|
||||
|
||||
[Install]
|
||||
WantedBy=system-update.target
|
||||
Also=systemd-readahead-collect.service
|
Loading…
Reference in New Issue
Block a user