mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
8 lines
237 B
Bash
8 lines
237 B
Bash
#!/bin/sh
|
|
if [ "$2" != "POST-INSTALL" ]; then exit 0; fi
|
|
(grep -v ^# /etc/services | grep canna >/dev/null) || \
|
|
(echo "Now, you need to add following entry to your /etc/services:" ;
|
|
echo ;
|
|
echo " canna 5680/tcp" ;
|
|
echo )
|