Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
Це архівний репозитарій. Ви можете переглядати і клонувати файли, але не можете робити пуш або відкривати питання/запити.

17 рядки
467B

  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: sh -c "cd {{ debirf_profile_directory }}/nest && find * | cpio --create -H newc" > {{debirf_initrd}}
  10. become: true
  11. become_user: debirf
  12. become_method: su
  13. args:
  14. chdir: "{{ debirf_home_directory }}"