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