12 lines
398 B
Bash
12 lines
398 B
Bash
|
#!/bin/bash -ex
|
||
|
|
||
|
mkdir -p roles.extern
|
||
|
|
||
|
git submodule add https://git.velt.biz/Ansible/cleanup-hosts.git roles.extern/cleanup-hosts
|
||
|
git submodule add https://git.velt.biz/Ansible/role.ssh-keyonly.git roles.extern/ssh-keyonly
|
||
|
git submodule add https://git.velt.biz/Ansible/epel-simplified roles.extern/epel-simplified
|
||
|
|
||
|
ln -s cleanup-hosts roles.extern/hosts
|
||
|
ln -s epel-simplified roles.extern/epel
|
||
|
|