Install calibre and stellarium
[wynter-salt-workstation.git] / map.jinja
blob64ae081c2706a9525126d54150457c4e9f129d18
1 {% set dirs = salt['grains.filter_by']({
2   'Debian': {
3     'etc': '/etc',
4     'bin': '/usr/bin',
5     'home': '/home',
6     'include': '/usr/include',
7     'lib': '/usr/lib',
8     'man': '/usr/share/man',
9     'sbin': '/usr/sbin',
10   },
11   'RedHat': {
12     'etc': '/etc',
13     'bin': '/usr/bin',
14     'home': '/home',
15     'include': '/usr/include',
16     'lib': '/usr/lib64',
17     'man': '/usr/share/man',
18     'sbin': '/usr/sbin',
19   },
20   'FreeBSD' : {
21     'etc': '/usr/local/etc',
22     'bin': '/usr/local/bin',
23     'home': '/home',
24     'include': '/usr/local/include',
25     'lib': '/usr/local/lib',
26     'man': '/usr/local/man',
27     'sbin': '/usr/local/sbin',
28   }
29 }, default='Debian') %}
31 {% set packages_prefixes = salt['grains.filter_by']({
32   'Debian': {
33     'php': 'php7.1-',
34     'python2': '',
35     'python3': 'python3-',
36   },
37   'RedHat': {
38     'python2': 'python2-',
39     'python3': 'python3-',
40   },
41   'FreeBSD' : {
42     'php': 'php71-',
43     'python2': 'py27-',
44     'python3': 'py36-',
45     'rubygem': 'rubygem-',
46   },
47 }, default='Debian') %}
49 {% set packages = salt['grains.filter_by']({
50   'Debian' : {
51     'ag': 'silversearcher-ag',
52     'aspell-fr': 'aspell-fr',
53     'aspell-en': 'aspell-en',
54     'certbot': 'certbot',
55     'composer': 'composer',
56     'cppunit': 'libcppunit-dev',
57     'emacs': 'emacs-nox',
58     'imagemagick': 'imagemagick',
59     'librabbitmq': 'librabbitmq-dev',
60     'mariadb': 'mariadb-server',
61     'node': 'nodejs',
62     'nss-tools': 'libnss3-tools',
63     'pear': 'php-pear',
64     'phpcs': 'php-codesniffer',
65     'phpunit': 'phpunit',
66     'sphinx': 'python3-sphinx',
67     'tcltls': 'tcl-tls',
68     'tdom': 'tdom',
69     'varnish': 'varnish',
70     'verbiste': 'verbiste',
71     'youtube-dl': 'youtube-dl',
72   },
73   'RedHat': {
74     'ag': 'the_silver_searcher',
75     'aspell-fr': 'aspell-fr',
76     'certbot': 'python2-certbot',
77     'cppunit': 'cppunit-devel',
78     'emacs': 'emacs-nox',
79     'exiftool': 'perl-Image-ExifTool',
80     'librabbitmq': 'librabbitmq',
81     'mariadb': 'mariadb-server',
82     'node': 'nodejs',
83     'pear': 'php-pear',
84     'phpcs': 'php-pear-PHP-CodeSniffer',
85     'sphinx': 'python3-sphinx',
86     'tcltls': 'tcltls',
87     'varnish': 'varnish',
88     'youtube-dl': 'youtube-dl',
89   },
90   'Arch': {
91     'ag': 'the_silver_searcher',
92     'aspell-fr': 'aspell-fr',
93     'certbot': 'certbot',
94     'cppunit': 'cppunit',
95     'emacs': 'emacs-nox',
96     'mariadb': 'mariadb',
97     'nss-tools': 'nss',
98     'sphinx': 'python-sphinx',
99     'tcltls': 'tcltls',
100     'varnish': 'varnish',
101     'youtube-dl': 'youtube-dl',
102   },
103   'FreeBSD' : {
104     'ag': 'the_silver_searcher',
105     'aspell-fr': 'fr-aspell',
106     'aspell-en': 'en-aspell',
107     'boost': 'boost-all',
108     'certbot': 'py27-certbot',
109     'composer': 'php-composer',
110     'cppunit': 'cppunit',
111     'emacs': 'emacs-nox11',
112     'exiftool': 'p5-Image-ExifTool-devel',
113     'imagemagick': 'ImageMagick',
114     'librabbitmq': 'rabbitmq-c-devel',
115     'mariadb': 'mariadb102-server',
116     'node': 'node',
117     'nss-tools': 'nss',
118     'pear': 'pear',
119     'phpcs': 'pear-PHP_CodeSniffer',
120     'phpunit': 'phpunit6',
121     'sphinx': 'py36-sphinx',
122     'tcltls': 'tcltls',
123     'tdom': 'tDOM',
124     'varnish': 'varnish5',
125     'verbiste': 'fr-verbiste',
126     'youtube-dl': 'youtube_dl',
127   },
128 }, default='Debian') %}