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.
15 lines
380 B
15 lines
380 B
- name: check log2ram exists
|
|
become: true
|
|
stat:
|
|
path: /etc/apt/sources.list.d/log2ram.list
|
|
register: stat_result
|
|
|
|
- name: log2ram auf bookworm
|
|
become: true
|
|
replace:
|
|
path: /etc/apt/sources.list.d/log2ram.list
|
|
regexp: buster
|
|
replace: bookworm
|
|
when: stat_result.stat.exists
|
|
- include_tasks: ../subtasks/upgrade.yml
|
|
- include_tasks: ../subtasks/reboot.yml
|
|
|