8 lines
365 B
Plaintext
8 lines
365 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
systemctl disable --now jupiter-biosupdate.service || echo "jupiter-biosupdate service could not be disabled"
|
||
|
systemctl disable --now jupiter-controller-update.service || echo "jupiter-controller-update service could not be disabled"
|
||
|
systemctl disable --now jupiter-fan-control.service || echo "jupiter-fan-control service could not be disabled"
|