You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

17 lines
425B

  1. ---
  2. - name: customize nest/init
  3. lineinfile:
  4. path: "{{ debirf_profile_directory }}/nest/init"
  5. regexp: '^unxz.*\/custom'
  6. insertafter: '^unxz.*\/rootfs.*cpio'
  7. line: cp -R /rootfs_include/* /newroot/
  8. - name: create customizable initrd
  9. shell: find * | cpio --create -H newc > {{debirf_initrd}}
  10. become: true
  11. become_user: debirf
  12. become_method: su
  13. args:
  14. chdir: "{{ debirf_profile_directory }}/nest"