d8e5efd339
Ports have been modified to conflict with bacula- and PKGNAMESUFFIX changed accordingly. PR: 191311 Submitted by: maintainer
13 lines
354 B
Bash
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
|