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.

19 lines
472B

  1. ---
  2. - name: debirf make
  3. command: debirf make --new {{debirf_profile_directory}}
  4. become: true
  5. become_user: debirf
  6. become_method: su
  7. args:
  8. chdir: "{{ debirf_home_directory }}"
  9. register: _debirf_make_command
  10. - name: copy kernel
  11. copy:
  12. src: "{{ _debirf_make_command.stderr_lines | map('regex_findall','^debirf> kernel: (.*)$') | list | json_query('[]') | first }}"
  13. dest: "{{ debirf_kernel }}"
  14. remote_src: yes
  15. owner: debirf
  16. group: debirf