File: libibverbs1.postinst

package info (click to toggle)
rdma-core 61.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,124 kB
  • sloc: ansic: 176,798; python: 15,496; sh: 2,742; perl: 1,465; makefile: 73
file content (10 lines) | stat: -rw-r--r-- 172 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
#!/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#