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