Package ayatana-indicator-bluetooth: Scripts

Post install

1
2
3
4
5
6
 
if [ $1 -eq 1 ] && sd_booted; then 
    SYSTEMD_HELPER=/lib/systemd/systemd-update-helper; 
    # Initial installation 
    $SYSTEMD_HELPER install-user-units ayatana-indicator-bluetooth.service || : 
fi
Pre uninstall

1
2
3
4
5
6
 
if [ $1 -eq 0 ] && sd_booted; then 
    SYSTEMD_HELPER=/lib/systemd/systemd-update-helper; 
    # Package removal, not upgrade 
    $SYSTEMD_HELPER remove-user-units ayatana-indicator-bluetooth.service || : 
fi