From: Karel Zak Date: Wed, 8 Aug 2018 09:35:58 +0000 (+0200) Subject: fstrim: update .service to follow /etc/fstab X-Git-Tag: v2.33-rc1~69 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0d73ea8bf96b036cc12fae6865158c936705238d;p=thirdparty%2Futil-linux.git fstrim: update .service to follow /etc/fstab Replace -a with -A to discard mounted filesystems from /etc/fstab. The original -a forces fstrim to try to discard all filesystems, including for example manually mounted removable media. It seems better for widely used .service unit to follow /etc/fstab. Addresses: https://github.com/karelzak/util-linux/issues/673 Signed-off-by: Karel Zak --- diff --git a/sys-utils/fstrim.service.in b/sys-utils/fstrim.service.in index 457dfcf63f..d70367eeac 100644 --- a/sys-utils/fstrim.service.in +++ b/sys-utils/fstrim.service.in @@ -1,6 +1,6 @@ [Unit] -Description=Discard unused blocks +Description=Discard unused blocks on filesystems from /etc/fstab [Service] Type=oneshot -ExecStart=@sbindir@/fstrim -av +ExecStart=@sbindir@/fstrim -Av