10 lines
254 B
Bash
Executable File
10 lines
254 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
test -x /usr/sbin/bongo-manager
|
|
test -x /usr/sbin/bongo-admin
|
|
test -x /usr/sbin/bongo-config
|
|
python3 -c 'import bongo, bongo_web, libbongo'
|
|
test -f /lib/systemd/system/bongo.service ||
|
|
test -f /usr/lib/systemd/system/bongo.service
|