#!/bin/sh

gpumanager="$(which gpu-manager)"
if [ -n "$gpumanager" ]; then
    $gpumanager --log /var/log/gpu-manager.log
fi

