Update packages on Ubuntu
This commit is contained in:
parent
a449d10b1c
commit
af49d819d3
2 changed files with 19 additions and 6 deletions
|
@ -35,18 +35,29 @@
|
|||
- mc
|
||||
- nmap
|
||||
- openssh-server
|
||||
- packagekit
|
||||
- python3
|
||||
- python3-psutil
|
||||
- ruby-asciidoctor-pdf
|
||||
- sipcalc
|
||||
- sqlite3
|
||||
- sudo
|
||||
- tmux
|
||||
- vim
|
||||
- wordgrinder-ncurses
|
||||
- zsh
|
||||
- zstd
|
||||
- name: Load /etc/profile in zsh
|
||||
become: true
|
||||
ansible.builtin.lineinfile:
|
||||
path: /etc/zsh/zprofile
|
||||
line: emulate sh -c 'source /etc/profile'
|
||||
- name: Enable automatic update check
|
||||
become: true
|
||||
ansible.builtin.lineinfile:
|
||||
path: /etc/apt/apt.conf.d/10periodic
|
||||
regex: "APT::Periodic::Update-Package-Lists "
|
||||
line: "APT::Periodic::Update-Package-Lists \"1\";"
|
||||
create: yes
|
||||
- name: Enable automatic install of updates
|
||||
become: true
|
||||
ansible.builtin.lineinfile:
|
||||
path: /etc/apt/apt.conf.d/10periodic
|
||||
regex: "APT::Periodic::Unattended-Upgrade "
|
||||
line: "APT::Periodic::Unattended-Upgrade \"1\";"
|
||||
|
|
|
@ -21,8 +21,10 @@
|
|||
force_apt_get: yes
|
||||
vars:
|
||||
packages:
|
||||
- emacs
|
||||
- dconf-cli
|
||||
- galculator
|
||||
- git-gui
|
||||
- libcanberra-gtk-module
|
||||
- remmina
|
||||
- vim-gtk3
|
||||
- thunderbird
|
||||
- vim-gtk
|
||||
|
|
Loading…
Reference in a new issue