fix(deck): Don't consider errors in steamos-automount to be fatal, this is just a request for external drives to be mounted.

This commit is contained in:
Kyle Gospodnetich 2023-11-08 15:21:01 -08:00
parent edd08c30d7
commit dac5bf5cf3
2 changed files with 6 additions and 6 deletions

View File

@ -7,9 +7,9 @@ index dd700da..152e231 100644
Type=oneshot
RemainAfterExit=true
+EnvironmentFile=/etc/default/steamos-btrfs
ExecStart=/usr/libexec/steamos-automount add %i
ExecStop=/usr/libexec/steamos-automount remove %i
ExecReload=/usr/libexec/steamos-automount retrigger %i
ExecStart=-/usr/libexec/steamos-automount add %i
ExecStop=-/usr/libexec/steamos-automount remove %i
ExecReload=-/usr/libexec/steamos-automount retrigger %i
diff --git a/usr/lib/hwsupport/format-device.sh b/usr/lib/hwsupport/format-device.sh
index b136413..d3cbb16 100755

View File

@ -9,9 +9,9 @@ index 96e8818..a16650c 100644
-ExecStart=/usr/lib/hwsupport/steamos-automount.sh add %i
-ExecStop=/usr/lib/hwsupport/steamos-automount.sh remove %i
-ExecReload=/usr/lib/hwsupport/steamos-automount.sh retrigger %i
+ExecStart=/usr/libexec/steamos-automount add %i
+ExecStop=/usr/libexec/steamos-automount remove %i
+ExecReload=/usr/libexec/steamos-automount retrigger %i
+ExecStart=-/usr/libexec/steamos-automount add %i
+ExecStop=-/usr/libexec/steamos-automount remove %i
+ExecReload=-/usr/libexec/steamos-automount retrigger %i
diff --git a/usr/bin/steamos-polkit-helpers/steamos-format-sdcard b/usr/bin/steamos-polkit-helpers/steamos-format-sdcard
index 53b4f2a..9022762 100755