aboutsummaryrefslogtreecommitdiffstats
path: root/roles/common/tasks/extrapkg.yml
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2016-04-09 22:44:28 -0400
committerbnewbold <bnewbold@robocracy.org>2016-04-09 22:44:31 -0400
commit714f726bb31f4bad12b71846d2ee0b03ccf67f3a (patch)
treea077bc54f49839e69d2fab7fcd760157688555f2 /roles/common/tasks/extrapkg.yml
parente9084254447d25480fac3818d042175d716db48f (diff)
downloadinfra-714f726bb31f4bad12b71846d2ee0b03ccf67f3a.tar.gz
infra-714f726bb31f4bad12b71846d2ee0b03ccf67f3a.zip
common: small changes
- add tree and linux-util - rename "extras" to "extrapkg" - add a gitconfig for root (for etckeeper)
Diffstat (limited to 'roles/common/tasks/extrapkg.yml')
-rw-r--r--roles/common/tasks/extrapkg.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/roles/common/tasks/extrapkg.yml b/roles/common/tasks/extrapkg.yml
new file mode 100644
index 0000000..0836912
--- /dev/null
+++ b/roles/common/tasks/extrapkg.yml
@@ -0,0 +1,17 @@
+---
+- name: Install extras that Everybody wants
+ apt: pkg={{ item }} state=installed
+ with_items:
+ - ack-grep
+ - alpine
+ - build-essential
+ - cowsay
+ - ctorrent
+ - figlet
+ - ipython
+ - ipython3
+ - lynx
+ - manpages-dev
+ tags:
+ - dependencies
+