You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: playbooks/roles/bringup_guestfs/tasks/main.yml
+11-3Lines changed: 11 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
7
7
- name: Fail if {{ topdir_path }}/.config is not present
8
8
fail:
9
-
msg: "You have not configured kdevops yet, configure kdevops first."
9
+
msg: "kdevops is not confgured. You must run 'make menuconfig'"
10
10
when: not config_file.stat.exists or not config_file.stat.isreg
11
11
tags: [ 'config-check' ]
12
12
@@ -51,7 +51,10 @@
51
51
52
52
- name: Fail if dnsmasq configuration files exist
53
53
fail:
54
-
msg: "dnsmasq configuration files or directories still exist. Please remove the following to fully uninstall dnsmasq:\n{{ dnsmasq_config_files | join('\n') }}"
54
+
msg: |
55
+
dnsmasq configuration files or directories still exist.
56
+
Please remove the following to fully uninstall
57
+
dnsmasq:\n{{ dnsmasq_config_files | join('\n') }}
55
58
when:
56
59
- distro_debian_based|bool
57
60
- dnsmasq_config_files.results | selectattr('stat.exists') | list | length > 0
@@ -85,7 +88,12 @@
85
88
86
89
- name: Fail if dnsmasq service is enabled or active
87
90
fail:
88
-
msg: "dnsmasq service is {{ 'enabled' if dnsmasq_enabled.rc == 0 else 'active' if dnsmasq_active.rc == 0 else 'present' }}. Please ensure dnsmasq is fully uninstalled and disabled. Run 'sudo systemctl disable dnsmasq' and 'sudo systemctl stop dnsmasq' to disable and stop the service."
91
+
msg: |
92
+
dnsmasq service is
93
+
{{ 'enabled' if dnsmasq_enabled.rc == 0 else 'active' if dnsmasq_active.rc == 0 else 'present' }}.
94
+
Please ensure dnsmasq is fully uninstalled and disabled.
95
+
Run 'sudo systemctl disable dnsmasq' and 'sudo systemctl
0 commit comments