mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-01 08:25:55 +03:00
scsi-link-pm: Don't fail if there are no matching SCSI hosts
This commit is contained in:
parent
8f4d8cf620
commit
5d9b3ed12b
@ -25,13 +25,14 @@ with pkgs.lib;
|
||||
config = mkIf (config.powerManagement.scsiLinkPolicy != "") {
|
||||
|
||||
jobs."scsi-link-pm" =
|
||||
{ description = "Set SCSI link power management policy";
|
||||
{ description = "SCSI Link Power Management Policy";
|
||||
|
||||
startOn = "started udev";
|
||||
startOn = "stopped udevtrigger";
|
||||
|
||||
task = true;
|
||||
|
||||
script = ''
|
||||
shopt -s nullglob
|
||||
for x in /sys/class/scsi_host/host*/link_power_management_policy; do
|
||||
echo ${config.powerManagement.scsiLinkPolicy} > $x
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user