Putty: https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html
apt install git
Putty: https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html
apt install git
autocmd BufRead *.yaml,*.yml | |
\ setlocal syntax=yaml autoindent | |
\ sw=4 ts=8 sts=4 expandtab | |
\ colorcolumn=78,120 |
Engine Independent Table statistics: https://mariadb.com/kb/en/library/engine-independent-table-statistics/
MySQL schema worst practices: https://docs.google.com/presentation/d/1q7e8wE5wz4aOglXhFjm1tndytWhwB3k9KqM3HQhwuMc/edit?usp=sharing
Optimizer hints: https://dev.mysql.com/doc/refman/5.7/en/optimizer-hints.html
- hosts: all:!freebsd | |
remote_user: root | |
gather_facts: false | |
tasks: | |
- name: Zajisti, ze mame python | |
raw: dnf install python3 -y | |
when: | |
- inventory_hostname != "serverc" | |
register: result | |
changed_when: "'Nothing to do.' not in result.stdout" |