8 lines
295 B
Bash
Executable File
8 lines
295 B
Bash
Executable File
#!/bin/sh
|
|
sudo apt update \
|
|
&& sudo apt install whois ansible \
|
|
&& ansible-galaxy collection install community.general \
|
|
&& ansible-galaxy collection install community.libvirt \
|
|
&& ansible-galaxy collection install ansible.posix
|
|
|
|
cp ./git-hooks/commit-msg ./.git/hooks/commit-msg |