---
- name: install chkconfig and insserv
  apt: pkg={{ item }} state=present
  with_items:
    - chkconfig
    - insserv
  tags:
    - chkconfig

# Workaround for a bug in the insserv package. insserv is needed by chkconfig
- name: Workaround for a bug in the insserv package.
  action: file src=/usr/lib/insserv/insserv dest=/sbin/insserv state=link
  tags:
    - chkconfig