1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-30 00:00:15 +01:00
libhermit/usr/rdma-core/debian/libibverbs1.postinst
2017-10-06 15:13:04 +02:00

10 lines
172 B
Bash

#!/bin/sh
# postinst script for libibverbs1
set -e
if [ "$1" = configure ]; then
getent group rdma > /dev/null 2>&1 || addgroup --system --quiet rdma
fi
#DEBHELPER#