workstation/roles/debian/tasks/packages-cli.yml

64 lines
1.4 KiB
YAML
Raw Normal View History

---
# Copyright 2021 Anthony Perkins
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- name: Install CLI packages
become: true
2021-02-19 20:32:22 +00:00
ansible.builtin.apt:
name: '{{ packages }}'
state: present
force_apt_get: yes
vars:
packages:
- apt-file
2019-10-04 14:38:31 +00:00
- ansible
- asciidoctor
2020-01-14 09:10:14 +00:00
- clang
- clang-format
2020-05-12 10:02:05 +00:00
- console-data
2020-06-05 12:15:23 +00:00
- cowsay
2020-04-21 14:17:54 +00:00
- curl
- dc
- dnsutils
2020-04-20 09:28:34 +00:00
- exfat-fuse
- exfat-utils
2020-06-05 12:15:23 +00:00
- figlet
- git
2019-10-10 18:10:42 +00:00
- gnupg
2020-04-28 13:20:37 +00:00
- groff
2020-01-14 09:10:14 +00:00
- lldb
2020-06-23 10:46:29 +00:00
- lynx
- mc
2020-05-05 13:10:57 +00:00
- nftables
- nmap
2019-10-05 19:32:56 +00:00
- openssh-server
- packagekit
- python3
2019-10-04 14:38:31 +00:00
- python3-psutil
- ruby-asciidoctor-pdf
2020-04-28 11:07:30 +00:00
- sipcalc
- sqlite3
2020-06-22 22:32:49 +00:00
- sshpass
- sudo
- tlp
- tmux
2019-10-21 08:09:44 +00:00
- vim
2019-10-21 08:11:03 +00:00
- wordgrinder-ncurses
- zsh
2020-06-18 13:04:51 +00:00
- name: Load /etc/profile in zsh
2020-01-12 14:58:15 +00:00
become: true
2021-02-19 20:32:22 +00:00
ansible.builtin.lineinfile:
2020-01-12 14:58:15 +00:00
path: /etc/zsh/zprofile
2020-01-12 14:50:35 +00:00
line: emulate sh -c 'source /etc/profile'