File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -905,6 +905,7 @@ It can be later removed by unsetting this role variable.
905
905
# # Troubleshooting
906
906
907
907
# ## The APT installation of proxmox-ve no longer responds, Ansible aborts, the SSH session stops.
908
+
908
909
Add this section to your ``ansible.cfg``.
909
910
910
911
` ` ` yaml
@@ -913,6 +914,19 @@ ssh_args = -o ServerAliveInterval=20
913
914
` ` `
914
915
[Reference Issue](https://github.com/lae/ansible-role-proxmox/issues/279)
915
916
917
+ # ## Proxmox doesn't boot/does not update GRUB config correctly.
918
+
919
+ There is no known issue for this, however the following error message is silently ignored because of a false positive on certain systems using ZFS :
920
+
921
+ ` ` `
922
+ $ sudo update-grub
923
+ <...>
924
+ /usr/sbin/grub-probe: error: unknown filesystem.
925
+ <...>
926
+ ` ` `
927
+
928
+ While this error is outside the scope of this role to fix, please open an issue with details if this ignore masks a true positive for your system.
929
+
916
930
# # Developer Notes
917
931
918
932
When developing new features or fixing something in this role, you can test out
Original file line number Diff line number Diff line change 39
39
- name : update-grub
40
40
command : update-grub
41
41
register : _pve_grub_update
42
- failed_when : ('error' in _pve_grub_update.stderr)
42
+ failed_when : >-
43
+ 'error' in (
44
+ _pve_grub_update.stderr_lines |
45
+ reject('equalto', '/usr/sbin/grub-probe: error: unknown filesystem.') |
46
+ join('\n')
47
+ )
43
48
tags : skiponlxc
You can’t perform that action at this time.
0 commit comments