OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # This file contains the list of packages we install on the production | 5 # This file contains the list of packages we install on the production |
6 # machines (ie, end users). One package per line | 6 # machines (ie, end users). One package per line |
7 | 7 |
8 # To read these into a line in a script, do: | 8 # To read these into a line in a script, do: |
9 # PKGS=`cat $PACKAGE_LIST_FILE | grep -v ' *#' | grep -v '^ *$' | tr '\n' ' '` | 9 # PKGS=`cat $PACKAGE_LIST_FILE | grep -v ' *#' | grep -v '^ *$' | tr '\n' ' '` |
10 # change "' '" to "','" for a comma separated list | 10 # change "' '" to "','" for a comma separated list |
(...skipping 19 matching lines...) Expand all Loading... |
30 libgl1-mesa-dri | 30 libgl1-mesa-dri |
31 | 31 |
32 # TODO: Move into a developer addon list. These should all be | 32 # TODO: Move into a developer addon list. These should all be |
33 # optional. For now, install these useful packages until things are farther | 33 # optional. For now, install these useful packages until things are farther |
34 # along in development. | 34 # along in development. |
35 apt | 35 apt |
36 bootchart | 36 bootchart |
37 bsdutils | 37 bsdutils |
38 bzip2 | 38 bzip2 |
39 diff | 39 diff |
| 40 gnupg # needed by apt-get to verify signatures |
40 hostname | 41 hostname |
41 ifupdown | 42 ifupdown |
42 iproute | 43 iproute |
43 iputils-ping | 44 iputils-ping |
44 less | 45 less |
45 ncurses-base | 46 ncurses-base |
46 net-tools | 47 net-tools |
47 openssh-server | 48 openssh-server |
48 tar | 49 tar |
49 vim-tiny | 50 vim-tiny |
| 51 x11-utils |
50 xterm | 52 xterm |
51 | 53 |
52 # Fonts | 54 # Fonts |
53 ttf-dejavu | 55 ttf-dejavu |
54 ttf-droid | 56 ttf-droid |
55 ttf-sil-abyssinica | 57 ttf-sil-abyssinica |
56 | 58 |
57 # For power events (needed specifically to trap lid-close) | 59 # For power events (needed specifically to trap lid-close) |
58 acpid | 60 acpid |
59 | 61 |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 # For collecting metrics | 130 # For collecting metrics |
129 time | 131 time |
130 | 132 |
131 # Install the chromeos build of upstart | 133 # Install the chromeos build of upstart |
132 upstart | 134 upstart |
133 | 135 |
134 # Listed as a recommendation rather than dependency by chromeos-chrome to | 136 # Listed as a recommendation rather than dependency by chromeos-chrome to |
135 # make it easier to replace it with different versions, but included here | 137 # make it easier to replace it with different versions, but included here |
136 # to make sure that we always include it in images. | 138 # to make sure that we always include it in images. |
137 flashplugin-installer | 139 flashplugin-installer |
OLD | NEW |