forked from norman/fusionpbx-install.sh-github-mirror
15 lines
214 B
Bash
Executable File
15 lines
214 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#move to script directory so all relative paths work
|
|
cd "$(dirname "$0")"
|
|
|
|
#includes
|
|
. ./config.sh
|
|
. ./colors.sh
|
|
|
|
#add sngrep
|
|
pkg install --yes sngrep
|
|
|
|
#update the list of executables in the path
|
|
rehash
|