Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FreeBSD] Fix the ping issue for FreeBSD #585

Merged
merged 3 commits into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions common/reset_base_snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
vars:
snapshot_name: "{{ base_snapshot_name }}"
snapshot_description: "{{ base_snapshot_description | default('') }}"
dump_memory: "{% if guest_os_ansible_distribution == 'FreeBSD' %}false{% else %}true{% endif %}"
ZouYuhua marked this conversation as resolved.
Show resolved Hide resolved

- name: "Refresh base snapshot status variable"
ansible.builtin.set_fact:
Expand Down
1 change: 1 addition & 0 deletions linux/setup/create_base_snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- include_tasks: ../../common/vm_take_snapshot.yml
vars:
snapshot_name: "{{ base_snapshot_name }}"
dump_memory: "{% if guest_os_ansible_distribution == 'FreeBSD' %}false{% else %}true{% endif %}"
- name: Set fact of base snapshot existence
ansible.builtin.set_fact:
base_snapshot_exists: true