Merge pull request #858 from anonymouse64/feature/uc-snap-routine-console-conf-start

bin/console-conf-wrapper: start snapd console-conf routine after user interacts
This commit is contained in:
Dimitri John Ledkov 2020-11-03 10:31:42 +00:00 committed by GitHub
commit a70d301cfd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -79,4 +79,10 @@ fi
cat /usr/share/subiquity/console-conf-wait cat /usr/share/subiquity/console-conf-wait
read REPLY read REPLY
# start the console-conf routine in snapd to delay any new refreshes, and wait
# for current refreshes to complete, this will print off messages if there are
# on-going refreshes
if snap routine console-conf-start --help >/dev/null 2>/dev/null; then
snap routine console-conf-start
fi
exec console-conf "$@" exec console-conf "$@"