mirror of
https://github.com/hermitcore/libhermit.git
synced 2025-03-30 00:00:15 +01:00
10 lines
172 B
Bash
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#
|