diff options
Diffstat (limited to 'abs/extra/bluez/bluez.install')
| -rw-r--r-- | abs/extra/bluez/bluez.install | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/abs/extra/bluez/bluez.install b/abs/extra/bluez/bluez.install new file mode 100644 index 0000000..f9b757b --- /dev/null +++ b/abs/extra/bluez/bluez.install @@ -0,0 +1,15 @@ +post_install() { +    add_service.sh bluetoothd +    echo ">>> Only the bluetoothd daemon is started by default." +    echo ">>> You can optionally add the following as required:" +    echo ">>> hidd dund pand rfcomm" +    echo ">>> $ sudo add_service.sh <service_name>" +} + +pre_remove() { +    for d in { bluetoothd,hidd,dund,pand,rfcomm } ; do +      if [ -d /var/service/${d} ] ; then +        remove_servcie.sh $d +      fi +    done +} | 
