10 lines
382 B
Bash
Executable file
10 lines
382 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
IPMIHOST=10.0.0.82
|
|
IPMIUSER=ReekyMarko
|
|
IPMIPW={{@@ env['PASS_IPMI'] @@}}
|
|
IPMIEK=0000000000000000000000000000000000000000
|
|
|
|
printf "Activating manual fan speeds! (2160 RPM)"
|
|
ipmitool -I lanplus -H $IPMIHOST -U $IPMIUSER -P $IPMIPW -y $IPMIEK raw 0x30 0x30 0x01 0x00
|
|
ipmitool -I lanplus -H $IPMIHOST -U $IPMIUSER -P $IPMIPW -y $IPMIEK raw 0x30 0x30 0x02 0xff 0x09
|