1 #!/bin/sh 2 set -e 3 4 case "$1" in 5 configure) 6 if ! getent group ubus >/dev/null; then 7 addgroup --system ubus 8 fi 9 ;; 10 11 abort-upgrade|abort-remove|abort-deconfigure) 12 ;; 13 14 *) 15 echo "postinst called with unknown argument \`$1'" >&2 16 exit 1 17 ;; 18 esac 19 20 #DEBHELPER# 21 22 exit 0
This page was automatically generated by LXR 0.3.1. • OpenWrt