This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
tsg-tsg-os-buildimage/ansible/roles/OFED/files/uname
songyanchao ac120ac5cb feat(TSG-12904): 修改OFED的安装方式
修改OFED的安装方式
2022-12-05 03:19:22 +00:00

10 lines
105 B
Bash
Executable File

#!/bin/sh
if [ "$1" == "-r" ]
then
echo KERNEL_VERSION.x86_64
else
/usr/bin/uname-backup $1
fi
exit 0