mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
df365f395d
port after repro-copy of bacula -> bacula-server.
18 lines
417 B
Bash
18 lines
417 B
Bash
#!/bin/sh
|
|
|
|
PATH=/bin:/usr/bin:/usr/sbin
|
|
if [ -z "${BACULA_DIR}" ]; then
|
|
BACULA_DIR=/var/db/bacula
|
|
fi
|
|
|
|
# Always add lines in /etc/services
|
|
grep -q "bacula-dir" /etc/services
|
|
if [ "$?" != "0" ]; then
|
|
echo "# Bacula port start
|
|
bacula-dir 9101/tcp #Bacula director daemon
|
|
bacula-fd 9102/tcp #Bacula file daemon
|
|
bacula-sd 9103/tcp #Bacula storage daemon
|
|
# Bacule port end" >> /etc/services
|
|
fi
|
|
|