10 lines
211 B
Bash
10 lines
211 B
Bash
|
#!/bin/bash
|
||
|
#Absolute path to this script
|
||
|
SCRIPT=$(readlink -f $0)
|
||
|
#Absolute path this script is in
|
||
|
SCRIPTPATH=$(dirname $SCRIPT)
|
||
|
|
||
|
cd $SCRIPTPATH
|
||
|
ansible-galaxy role install -r roles/requirements.yml -p roles/
|
||
|
|