summaryrefslogtreecommitdiffstats
path: root/tasks
diff options
context:
space:
mode:
authorKevin Fenzi <kevin@scrye.com>2014-02-06 16:57:18 +0000
committerKevin Fenzi <kevin@scrye.com>2014-02-06 16:57:18 +0000
commitd2ea2b1e63e9fbc68ca53503c7a7456ea64a0c91 (patch)
tree37a004e1c281f89b0187cc41f2cb7d48a874dee8 /tasks
parent417471d97898a1c7cdf01e9e42d914258b3ea277 (diff)
Pull builder kernel task into koji_builder role.
Diffstat (limited to 'tasks')
-rw-r--r--tasks/koji/builder_kernel_config.yml18
1 files changed, 0 insertions, 18 deletions
diff --git a/tasks/koji/builder_kernel_config.yml b/tasks/koji/builder_kernel_config.yml
deleted file mode 100644
index b2b1ca31f..000000000
--- a/tasks/koji/builder_kernel_config.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-#- name: set kernel params for loopback partitioning
-# action: command /sbin/grubby --update-kernel=ALL --args=loop.max_part=256
-#
-- name: check for max_loop
- command: cat /etc/grub2.cfg
- register: max_loop
- always_run: yes
- changed_when: '1 != 1'
-
-- name: set kernel params for more loops
- action: command /sbin/grubby --update-kernel=ALL --args=max_loop=64
- when: max_loop.stdout.find("max_loop=64") == -1
-
-- name: special pkgs for the x86_64 builders
- yum: state=installed pkg={{ item }}
- with_items:
- - kmod-hfsplus
- when: is_rhel == 'True'