Merge branch 'master' of ssh://git-ssh.notandy.de:2222/ansible/roles/basic_tools into HEAD

This commit is contained in:
nd 2021-03-27 00:24:13 +01:00
commit d1694b7069
No known key found for this signature in database
GPG key ID: 21B5CD4DEE3670E9
2 changed files with 24 additions and 0 deletions

13
files/smartmontools Normal file
View file

@ -0,0 +1,13 @@
# Defaults for smartmontools initscript (/etc/init.d/smartmontools)
# This is a POSIX shell fragment
# List of devices you want to explicitly enable S.M.A.R.T. for
# Not needed (and not recommended) if the device is monitored by smartd
#enable_smart="/dev/hda /dev/hdb"
# uncomment to start smartd on system startup
#start_smartd=yes
# uncomment to pass additional options to smartd on startup
#smartd_opts="--interval=1800"
smartd_opts="-q never"

View file

@ -25,3 +25,14 @@
src: dotfiles/tmux.conf src: dotfiles/tmux.conf
dest: /etc/tmux.conf dest: /etc/tmux.conf
mode: 0644 mode: 0644
- name: work around a debian bug in smartmontools
copy:
src: smartmontools
dest: /etc/default/smartmontools
mode: 0644
- name: enforce vim as editor
community.general.alternatives:
name: editor
path: /usr/bin/vim.basic