File tree Expand file tree Collapse file tree 3 files changed +57
-55
lines changed
provision-contest/ansible/roles/base_packages Expand file tree Collapse file tree 3 files changed +57
-55
lines changed Original file line number Diff line number Diff line change
1
+ REMOVED_PACKAGES :
2
+ - apport
3
+ - ntp
4
+
5
+ INSTALLED_PACKAGES :
6
+ - ack
7
+ - git
8
+ - htop
9
+ - httpie
10
+ - ncdu
11
+ - pv
12
+ - screen
13
+ - autoconf
14
+ - automake
15
+ - efibootmgr
16
+ - curl
17
+ - gcc
18
+ - g++
19
+ - default-jdk-headless
20
+ - make
21
+ - zip
22
+ - unzip
23
+ - php-cli
24
+ - php-gd
25
+ - php-curl
26
+ - php-mysql
27
+ - php-json
28
+ - php-xml
29
+ - php-zip
30
+ - php-mbstring
31
+ - php-intl
32
+ - bsdmainutils
33
+ - libcgroup-dev
34
+ - libcurl4-gnutls-dev
35
+ - libjsoncpp-dev
36
+ - libmagic-dev
37
+ - debootstrap
38
+ - texlive-latex-recommended
39
+ - texlive-latex-extra
40
+ - apache2-utils
41
+ - tig
42
+ - bat
43
+ - jq
44
+ - python3-sphinx
45
+ - autoconf
46
+ - automake
47
+ - bats
48
+ - python3-sphinx
49
+ - python3-sphinx-rtd-theme
50
+ - rst2pdf
51
+ - fontconfig
52
+ - python3-yaml
53
+ - latexmk
54
+ - acl
Original file line number Diff line number Diff line change 46
46
- name : Remove some packages
47
47
apt :
48
48
state : absent
49
- pkg :
50
- - apport
51
- - ntp
49
+ pkg : " {{ REMOVED_PACKAGES }}"
52
50
53
51
- name : Install common required/useful packages
54
52
apt :
55
53
state : present
56
- pkg :
57
- - ack
58
- - git
59
- - htop
60
- - httpie
61
- - ncdu
62
- - pv
63
- - screen
64
- - autoconf
65
- - automake
66
- - efibootmgr
67
- - curl
68
- - gcc
69
- - g++
70
- - default-jdk-headless
71
- - make
72
- - zip
73
- - unzip
74
- - php-cli
75
- - php-gd
76
- - php-curl
77
- - php-mysql
78
- - php-json
79
- - php-xml
80
- - php-zip
81
- - php-mbstring
82
- - php-intl
83
- - bsdmainutils
84
- - libcgroup-dev
85
- - libcurl4-gnutls-dev
86
- - libjsoncpp-dev
87
- - libmagic-dev
88
- - debootstrap
89
- - texlive-latex-recommended
90
- - texlive-latex-extra
91
- - apache2-utils
92
- - tig
93
- - bat
94
- - jq
95
- - python3-sphinx
96
- - autoconf
97
- - automake
98
- - bats
99
- - python3-sphinx
100
- - python3-sphinx-rtd-theme
101
- - rst2pdf
102
- - fontconfig
103
- - python3-yaml
104
- - latexmk
105
- - acl
106
- - gdb
107
- - rsync
54
+ pkg : " {{ INSTALLED_PACKAGES }}"
108
55
109
56
- name : Install composer
110
57
copy :
Original file line number Diff line number Diff line change
1
+ * .yml
You can’t perform that action at this time.
0 commit comments