blob: cde0f96ca671df3bc74fcaee922d56e9a7c0a7dd [file] [log] [blame]
#!/bin/bash
action=$1
devpath=$2
of_fullname=$3
#Use of_fullname if it's there, otherwise use devpath.
path=$of_fullname
if [ -z "$path" ]
then
path=$devpath
if [[ "$path" =~ (.*)/hwmon/hwmon[0-9]+$ ]];
then
path=${BASH_REMATCH[1]}
fi
fi
path="${path//:/--}"
systemctl $action 'xyz.openbmc_project.Hwmon@'$path'.service'