mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-18 08:01:48 +02:00
15 lines
237 B
Bash
Executable File
15 lines
237 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#!/bin/bash
|
|
|
|
GLEXEC=$(which ansible-galaxy)
|
|
|
|
if [ $? = 1 ]; then
|
|
echo
|
|
echo "Ansible-galaxy not found, please make sure you have ansible 1.9+ installed."
|
|
echo
|
|
exit 1
|
|
fi
|
|
|
|
$GLEXEC install -f -r ansible/requirements.txt
|