This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# Post-commit hook that decrypts files containing '.vault' | |
# | |
# File should be .git/hooks/post-commit and executable | |
CRYPT_TAG='^.*\.vault(([\.]?)|(\..*))$' | |
EXIT_STATUS=0 | |
wipe="\033[1m\033[0m" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- hosts: mariadb_dev | |
vars: | |
mysql_root_pw: '' | |
tasks: | |
- name: enable network | |
service: | |
name: '{{ item }}' |
NewerOlder