-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackages.yml
75 lines (71 loc) · 1.75 KB
/
packages.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
- name: Update and Install packages
hosts: localhost
become: True
tasks:
- name: install rpmfusion repo
package:
name: "{{ item }}"
state: present
disable_gpg_check: true
with_items:
- http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-{{ fedora_version }}.noarch.rpm
- http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-{{ fedora_version }}.noarch.rpm
- name: "install basic packages"
package:
name: "{{ item }}"
state: present
with_items:
- bzip2
- curl
- readline-devel
- redhat-rpm-config
- zlib-devel
- rubygems
- fuse-encfs
- chromium
- python3-devel
- python3-libselinux
- NetworkManager-openvpn
- NetworkManager-openvpn-gnome
- name: "install productivity tools"
tags: productivity
package:
name: "{{ item }}"
state: present
with_items:
- task
- the_silver_searcher
- tmux
- tree
- terminator
- keepassxc
- powerline
- powerline-fonts
- name: "install dev packages"
tags: dev
package:
name: "{{ item }}"
state: present
with_items:
- vim
- git
- python-xdot
- python3-libselinux
- ruby-devel
- rubygems
- libyaml-devel
- gcc-c++
- make
- tox
- npm
- name: "install media related packages"
tags: media
package:
name: "{{ item }}"
state: present
with_items:
- vlc
- gimp
- ffmpeg
- name: "install tmuxinator with ruby gem"
shell: gem install tmuxinator