11 lines
157 B
Bash
Executable file
11 lines
157 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [[ "$1" == "configure" ]]; then
|
|
|
|
deb-systemd-helper enable bsnotify.service
|
|
deb-systemd-invoke restart bsnotify.service
|
|
|
|
fi
|
|
|