aboutsummaryrefslogtreecommitdiffstats
path: root/packages/cortexa57-poky-linux/bluez5/bluez5/latest.pkg_prerm
blob: 9c2ff95234f14f2e17bdc2fa7cb596c6e38bf75d (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -e
if systemctl >/dev/null 2>/dev/null; then
	if [ -z "$D" ]; then
		systemctl stop bluetooth.service

		systemctl disable bluetooth.service
	fi
fi