freebsd-ports/sysutils/bacula5-server/files/pkg-install.client.in
William Grzybowski d8e5efd339 Copy bacula ports preparing to bacula 7.x update
Ports have been modified to conflict with bacula- and PKGNAMESUFFIX changed
accordingly.

PR:		191311
Submitted by:	maintainer
2014-08-07 19:21:45 +00:00

13 lines
354 B
Bash

#!/bin/sh
PATH=/bin:/usr/bin:/usr/sbin
# 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