mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
15 lines
237 B
Bash
15 lines
237 B
Bash
![]() |
#!/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
|