Merge branch 'master' into stable

This commit is contained in:
Saverio Miroddi 2020-03-17 19:21:20 +01:00
commit 5061404583
2 changed files with 11 additions and 6 deletions

View File

@ -8,7 +8,8 @@ ZFS installer is a shell script program that fully prepares ZFS on a system, and
The program currently supports:
- Ubuntu Desktop/Server 18.04.x Live
- Ubuntu Desktop 18.04.x Live
- Ubuntu Server 18.04.4 Live
- Linux Mint 19.x
- Debian 10.x Live (desktop environment required)
- ElementaryOS 5.1

View File

@ -846,13 +846,17 @@ DIFF
patch -p1 "$c_unpacked_subiquity_dir/lib/python3.6/site-packages/subiquity/ui/views/installprogress.py" << 'DIFF'
diff lib/python3.6/site-packages/subiquity/ui/views/installprogress.py{.bak,}
122,125c122
< if include_exit:
< btns = [self.view_log_btn, self.exit_btn, self.reboot_btn]
< else:
< btns = [self.view_log_btn, self.reboot_btn]
47a48,49
> self.exit_btn = cancel_btn(
> _("Exit To Shell"), on_press=self.quit)
121c123
< btns = [self.view_log_btn, self.reboot_btn]
---
> btns = [self.view_log_btn, self.exit_btn, self.reboot_btn]
133a136,138
> def quit(self, btn):
> self.controller.quit()
>
DIFF
snap stop subiquity