core/bluez/bluez.install

14 lines
231 B
Plaintext

post_install() {
echo "Enabling systemd service"
systemctl enable bluetooth.service
}
post_upgrade() {
post_install
}
pre_remove() {
echo "Disabling systemd service"
systemctl disable bluetooth.service
}