-
Notifications
You must be signed in to change notification settings - Fork 22
/
system_upgrade.py
641 lines (542 loc) · 24.3 KB
/
system_upgrade.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
# -*- coding: utf-8 -*-
#
# Copyright (c) 2015 Red Hat, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.
#
# Author(s): Will Woods <wwoods@redhat.com>
"""system_upgrade.py - DNF plugin to handle major-version system upgrades."""
from __future__ import unicode_literals
import os
import json
import argparse
from argparse import ArgumentParser
from subprocess import call, check_call
import dnf
import dnf.cli
from dnf.cli import CliError
try:
from dnf.i18n import translation
except ImportError:
# adapted from dnf-1.1.4's dnf.i18n.translation()
def translation(name):
def ucd_wrapper(fnc):
return lambda *w: dnf.i18n.ucd(fnc(*w))
t = dnf.pycomp.gettext.translation(name, fallback=True)
return (ucd_wrapper(f) for f in dnf.pycomp.gettext_setup(t))
TEXTDOMAIN = 'dnf-plugin-system-upgrade' # NOTE: must match Makefile
_, P_ = translation(TEXTDOMAIN)
# Translators: This string is only used in unit tests.
_("the color of the sky")
import uuid
DOWNLOAD_FINISHED_ID = uuid.UUID('9348174c5cc74001a71ef26bd79d302e')
REBOOT_REQUESTED_ID = uuid.UUID('fef1cc509d5047268b83a3a553f54b43')
UPGRADE_STARTED_ID = uuid.UUID('3e0a5636d16b4ca4bbe5321d06c6aa62')
UPGRADE_FINISHED_ID = uuid.UUID('8cec00a1566f4d3594f116450395f06c')
ID_TO_IDENTIFY_BOOTS = UPGRADE_STARTED_ID
import logging
from systemd import journal
logger = logging.getLogger("dnf.plugin")
from distutils.version import StrictVersion
DNFVERSION = StrictVersion(dnf.const.VERSION)
PLYMOUTH = '/usr/bin/plymouth'
DEFAULT_DATADIR = '/var/lib/dnf/system-upgrade'
MAGIC_SYMLINK = '/system-update'
SYSTEMD_FLAG_FILE = os.path.join(MAGIC_SYMLINK, '.dnf-system-upgrade')
NO_KERNEL_MSG = _(
"No new kernel packages were found.")
RELEASEVER_MSG = _(
"Need a --releasever greater than the current system version.")
DOWNLOAD_FINISHED_MSG = _( # Translators: do not change "reboot" here
"Download complete! Use 'dnf %s reboot' to start the upgrade.")
DEPRECATED_OPTION = _(
"'%s' is not used anymore. Ignoring.")
REMOVED_OPTION = _(
"Sorry, dnf system-upgrade doesn't support '%(option)s'")
REMOVED_OPTIONS = {
'--expire-cache': _(
"'--expire-cache' removed. Use 'dnf system-upgrade download --refresh'"),
'--clean-metadata': _(
"'--clean-metadata' removed. Use 'dnf clean metadata --releasever=VER'"),
'--dry-run': REMOVED_OPTION,
'--just-print': REMOVED_OPTION,
'-n': REMOVED_OPTION,
'--debuglog': _(
"Can't redirect DNF logs with --debuglog. Use DNF debug options instead."),
'--enableplugin': _(
"Sorry, dnf doesn't support '%(option)s'"),
'--device': REMOVED_OPTION,
'--iso': REMOVED_OPTION,
'--add-install': REMOVED_OPTION,
}
NOT_TOGETHER = _(
"Can't do '%s' and '%s' at the same time.")
CANT_RESET_RELEASEVER = _(
"Sorry, you need to use 'download --releasever' instead of '--network'")
# --- Miscellaneous helper functions ------------------------------------------
def reboot():
check_call(["systemctl", "reboot"])
# DNF-FIXME: dnf.util.clear_dir() doesn't delete regular files :/
def clear_dir(path):
for entry in os.listdir(path):
fullpath = os.path.join(path, entry)
try:
if os.path.isdir(fullpath):
dnf.util.rm_rf(fullpath)
else:
os.unlink(fullpath)
except OSError:
pass
def checkReleaseVer(conf, target=None):
if dnf.rpm.detect_releasever(conf.installroot) == conf.releasever:
raise CliError(RELEASEVER_MSG)
if target and target != conf.releasever:
# it's too late to set releasever here, so this can't work.
# (see https://bugzilla.redhat.com/show_bug.cgi?id=1212341)
raise CliError(CANT_RESET_RELEASEVER)
def checkDataDir(datadir):
if os.path.exists(datadir) and not os.path.isdir(datadir):
raise CliError(_("--datadir: File exists"))
# FUTURE NOTE: check for removable devices etc.
def checkDNFVer():
if DNFVERSION < StrictVersion("1.1.0"):
raise CliError(_("This plugin requires DNF 1.1.0 or later."))
# --- State object - for tracking upgrade state between runs ------------------
# DNF-INTEGRATION-NOTE: basically the same thing as dnf.persistor.JSONDB
class State(object):
statefile = '/var/lib/dnf/system-upgrade.json'
def __init__(self):
self._data = {}
self._read()
def _read(self):
try:
with open(self.statefile) as fp:
self._data = json.load(fp)
except IOError:
self._data = {}
def write(self):
dnf.util.ensure_dir(os.path.dirname(self.statefile))
with open(self.statefile, 'w') as outf:
json.dump(self._data, outf)
def clear(self):
if os.path.exists(self.statefile):
os.unlink(self.statefile)
self._read()
def __enter__(self):
return self
def __exit__(self, exc_type, exc_value, traceback):
if exc_type is None:
self.write()
# helper function for creating properties. pylint: disable=protected-access
def _prop(option): # pylint: disable=no-self-argument
def setprop(self, value):
self._data[option] = value
def getprop(self):
return self._data.get(option)
return property(getprop, setprop)
download_status = _prop("download_status")
datadir = _prop("datadir")
target_releasever = _prop("target_releasever")
system_releasever = _prop("system_releasever")
upgrade_status = _prop("upgrade_status")
distro_sync = _prop("distro_sync")
allow_erasing = _prop("allow_erasing")
best = _prop("best")
exclude = _prop("exclude")
# --- Plymouth output helpers -------------------------------------------------
class PlymouthOutput(object):
"""A plymouth output helper class that filters duplicate calls, and stops
calling the plymouth binary if we fail to contact it."""
def __init__(self):
self.alive = True
self._last_args = dict()
self._last_msg = None
def _plymouth(self, cmd, *args):
dupe_cmd = (args == self._last_args.get(cmd))
if (self.alive and not dupe_cmd) or cmd == '--ping':
try:
self.alive = (call((PLYMOUTH, cmd) + args) == 0)
except OSError:
self.alive = False
self._last_args[cmd] = args
return self.alive
def ping(self):
return self._plymouth("--ping")
def message(self, msg):
if self._last_msg and self._last_msg != msg:
self._plymouth("hide-message", "--text", self._last_msg)
self._last_msg = msg
return self._plymouth("display-message", "--text", msg)
def set_mode(self, mode):
return self._plymouth("change-mode", "--" + mode)
def progress(self, percent):
return self._plymouth("system-update", "--progress", str(percent))
# A single PlymouthOutput instance for us to use within this module
Plymouth = PlymouthOutput()
# A TransactionProgress class that updates plymouth for us.
class PlymouthTransactionProgress(dnf.callback.TransactionProgress):
# NOTE: I'm cheating here - this isn't part of the public DNF API
action = dnf.yum.rpmtrans.LoggingTransactionDisplay().action
# pylint: disable=too-many-arguments
def progress(self, package, action, ti_done, ti_total, ts_done, ts_total):
self._update_plymouth(package, action, ts_done, ts_total)
def _update_plymouth(self, package, action, current, total):
Plymouth.progress(int(100.0 * current / total))
Plymouth.message(self._fmt_event(package, action, current, total))
def _fmt_event(self, package, action, current, total):
action = self.action.get(action, action)
return "[%d/%d] %s %s..." % (current, total, action, package)
# --- journal helpers -------------------------------------------------
def find_boots(message_id):
"""Find all boots with this message id.
Returns the entries of all found boots.
"""
j = journal.Reader()
j.add_match(MESSAGE_ID=message_id.hex, # identify the message
_UID=0) # prevent spoofing of logs
oldboot = None
for entry in j:
boot = entry['_BOOT_ID']
if boot == oldboot:
continue
oldboot = boot
yield entry
def list_logs():
print(_('The following boots appear to contain upgrade logs:'))
n = -1
for n, entry in enumerate(find_boots(ID_TO_IDENTIFY_BOOTS)):
print('{} / {.hex}: {:%Y-%m-%d %H:%M:%S} {}→{}'.format(
n + 1,
entry['_BOOT_ID'],
entry['__REALTIME_TIMESTAMP'],
entry.get('SYSTEM_RELEASEVER', '??'),
entry.get('TARGET_RELEASEVER', '??')))
if n == -1:
print(_('-- no logs were found --'))
def pick_boot(message_id, n):
boots = list(find_boots(message_id))
# Positive indices index all found boots starting with 1 and going forward,
# zero is the current boot, and -1, -2, -3 are previous going backwards.
# This is the same as journalctl.
try:
if n == 0:
raise IndexError
elif n > 0:
n -= 1
return boots[n]['_BOOT_ID']
except IndexError:
raise CliError(_("Cannot find logs with this index."))
def show_log(n):
boot_id = pick_boot(ID_TO_IDENTIFY_BOOTS, n)
check_call(['journalctl', '--boot', boot_id.hex])
# --- Argument parsing helpers ------------------------------------------------
class DeprecatedOption(argparse.Action):
def __call__(self, parser, namespace, values, option_string=None):
logger.warning(DEPRECATED_OPTION, option_string)
class RemovedOption(argparse.Action):
def __call__(self, parser, namespace, values, option_string=None):
message = REMOVED_OPTIONS[option_string] % dict(option=option_string)
raise CliError(message)
# DNF-INTEGRATION-NOTE: this was borrowed from dnfpluginscore.ArgumentParser
class PluginArgumentParser(ArgumentParser):
def __init__(self, cmd, **kwargs):
prog = 'dnf %s' % cmd
ArgumentParser.__init__(self, prog=prog, add_help=False, **kwargs)
def error(self, message):
raise AttributeError(message)
def parse_args(self, args=None, namespace=None):
try:
return ArgumentParser.parse_args(self, args, namespace)
except AttributeError as e:
self.print_help()
raise CliError(str(e))
ACTIONS = ('download', 'clean', 'reboot', 'upgrade', 'help', 'log')
def make_parser(prog):
p = PluginArgumentParser(prog)
# show help when passed --help-cmd, like dnf-plugins-core plugins
p.add_argument('--help-cmd', action='store_true', help=argparse.SUPPRESS)
# basic download options
g = p.add_argument_group(_("download options"))
g.add_argument('--releasever', metavar=_("VERSION"),
help=_("release version (required)"))
g.add_argument('--datadir', default=DEFAULT_DATADIR,
help=_("save downloaded data to this location"))
# depsolver arguments for the download (carried on to upgrade)
g.add_argument('--distro-sync', default=True, action='store_true',
help=argparse.SUPPRESS)
g.add_argument('--no-downgrade', dest='distro_sync', action='store_false',
help=_("keep installed packages if the new release's version is older"))
# deprecated fedup options — action aliases
p.add_argument('--network',
help=argparse.SUPPRESS)
p.add_argument('--clean',
help=argparse.SUPPRESS, action='store_true')
# deprecated fedup options
for arg in ('--skipbootloader', '--skipkernel', '--resetbootloader'):
p.add_argument(arg, nargs=0, help=argparse.SUPPRESS, action=DeprecatedOption)
for arg in ('--instrepo', '--product'):
p.add_argument(arg, nargs=1, help=argparse.SUPPRESS, action=DeprecatedOption)
# deprecated fedup options — ignore silently
p.add_argument('--skippkgs',
'--logtraceback',
help=argparse.SUPPRESS, action='store_false')
# deprecated fedup options — fail with error
p.add_argument(*REMOVED_OPTIONS.keys(),
nargs='?', help=argparse.SUPPRESS, action=RemovedOption)
# and, semi-finally, the action itself
p.add_argument('action', choices=ACTIONS, nargs='?',
help=_("action to perform"))
# options for the log verb
g2 = p.add_argument_group(_("log options"))
g2.add_argument('number', type=int, nargs='?',
help=_('which logs to show (-1 is last, etc)'))
# hidden option for `reboot` testing
p.add_argument('--no-reboot', dest='reboot', default=True,
action='store_false', help=argparse.SUPPRESS)
# hidden option to skip the kernel package check
p.add_argument('--no-kernel', dest='needkernel', default=True,
action='store_false', help=argparse.SUPPRESS)
return p
# --- The actual Plugin and Command objects! ----------------------------------
class SystemUpgradePlugin(dnf.Plugin):
name = 'system-upgrade'
def __init__(self, base, cli):
super(SystemUpgradePlugin, self).__init__(base, cli)
if cli:
cli.register_command(SystemUpgradeCommand)
class SystemUpgradeCommand(dnf.cli.Command):
# pylint: disable=unused-argument
aliases = ('system-upgrade', 'fedup')
summary = _("Prepare system for upgrade to a new release")
# NOTE: upgrade isn't meant to be invoked by users, so it's not in usage
usage = "[%s] [download --releasever=%s|reboot|clean|log]" % (
_("OPTIONS"), _("VERSION"))
def __init__(self, cli):
super(SystemUpgradeCommand, self).__init__(cli)
self.opts = None
self.parser = None
self.state = State()
def parse_args(self, extargs):
self.parser = make_parser(self.aliases[0])
opts = self.parser.parse_args(extargs)
if opts.help_cmd:
opts.action = 'help'
elif opts.clean:
# --clean is a deprecated fedup alias for clean
if opts.action:
raise CliError(NOT_TOGETHER % ('--clean', opts.action))
if opts.network:
raise CliError(NOT_TOGETHER % ('--clean', '--network'))
opts.action = 'clean'
elif opts.network:
# --network is a deprecated fedup alias for download --releasever
if opts.action:
raise CliError(NOT_TOGETHER % ('--network', opts.action))
if opts.releasever:
raise CliError(NOT_TOGETHER % ('--network', '--releasever'))
opts.releasever = opts.network
opts.action = 'download'
elif not opts.action:
dnf.cli.commands.err_mini_usage(self.cli, self.cli.base.basecmd)
raise CliError
return opts
def log_status(self, message, message_id):
"Log directly to the journal"
journal.send(message,
MESSAGE_ID=message_id,
PRIORITY=journal.LOG_NOTICE,
SYSTEM_RELEASEVER=self.state.system_releasever,
TARGET_RELEASEVER=self.state.target_releasever,
DNF_VERSION=dnf.const.VERSION)
# Call sub-functions (like configure_download()) for each possible action.
# (this tidies things up quite a bit.)
def configure(self, args):
self.opts = self.parse_args(args)
self._call_sub("configure", args)
def doCheck(self, basecmd, extcmds):
self._call_sub("check", basecmd, extcmds)
def run(self, extcmds):
self._call_sub("run", extcmds)
def run_transaction(self):
self._call_sub("transaction")
def _call_sub(self, name, *args):
subfunc = getattr(self, name + '_' + self.opts.action, None)
if callable(subfunc):
subfunc(*args)
# == configure_*: set up action-specific demands ==========================
def configure_help(self, args):
pass
def configure_download(self, args):
self.cli.demands.root_user = True
self.cli.demands.resolving = True
self.cli.demands.available_repos = True
self.cli.demands.sack_activation = True
self.base.repos.all().pkgdir = self.opts.datadir
# We want to do the depsolve / download / transaction-test, but *not*
# run the actual RPM transaction to install the downloaded packages.
# Setting the "test" flag makes the RPM transaction a test transaction,
# so nothing actually gets installed.
# (It also means that we run two test transactions in a row, which is
# kind of silly, but that's something for DNF to fix...)
self.base.conf.tsflags.append("test")
def configure_reboot(self, args):
# FUTURE: add a --debug-shell option to enable debug shell:
# systemctl add-wants system-update.target debug-shell.service
self.cli.demands.root_user = True
def configure_upgrade(self, args):
# same as the download, but offline and non-interactive. so...
self.cli.demands.root_user = True
self.cli.demands.resolving = True
self.cli.demands.sack_activation = True
# use the saved value for --datadir, --allowerasing, etc.
self.opts.datadir = self.state.datadir
self.opts.distro_sync = self.state.distro_sync
self.cli.demands.allow_erasing = self.state.allow_erasing
self.base.conf.best = self.state.best
self.base.conf.exclude = self.state.exclude
self.base.repos.all().pkgdir = self.opts.datadir
# don't try to get new metadata, 'cuz we're offline
self.cli.demands.cacheonly = True
# and don't ask any questions (we confirmed all this beforehand)
self.base.conf.assumeyes = True
self.cli.demands.transaction_display = PlymouthTransactionProgress()
def configure_clean(self, args):
self.cli.demands.root_user = True
def configure_log(self, args):
pass
# == check_*: do any action-specific checks ===============================
def check_download(self, basecmd, extargs):
dnf.cli.commands.checkGPGKey(self.base, self.cli)
dnf.cli.commands.checkEnabledRepo(self.base)
checkReleaseVer(self.base.conf, target=self.opts.releasever)
checkDataDir(self.opts.datadir)
checkDNFVer()
def check_reboot(self, basecmd, extargs):
if not self.state.download_status == 'complete':
raise CliError(_("system is not ready for upgrade"))
if os.path.lexists(MAGIC_SYMLINK):
raise CliError(_("upgrade is already scheduled"))
# FUTURE: checkRPMDBStatus(self.state.download_transaction_id)
checkDNFVer()
def check_upgrade(self, basecmd, extargs):
if not self.state.upgrade_status == 'ready':
raise CliError( # Translators: do not change "reboot" here
_("use '%s reboot' to begin the upgrade") % basecmd)
if os.readlink(MAGIC_SYMLINK) != self.state.datadir:
logger.info(_("another upgrade tool is running. exiting quietly."))
raise SystemExit(0)
checkDNFVer()
# == run_*: run the action/prep the transaction ===========================
def run_help(self, extcmds):
self.parser.print_help()
def run_prepare(self, extcmds):
# make the magic symlink
os.symlink(self.state.datadir, MAGIC_SYMLINK)
# write releasever into the flag file so it can be read by systemd
with open(SYSTEMD_FLAG_FILE, 'w') as flagfile:
flagfile.write("RELEASEVER=%s\n" % self.state.target_releasever)
# set upgrade_status so that the upgrade can run
with self.state as state:
state.upgrade_status = 'ready'
def run_reboot(self, extcmds):
self.run_prepare([])
if not self.opts.reboot:
return
self.log_status(_("Rebooting to perform upgrade."),
REBOOT_REQUESTED_ID)
reboot()
def run_download(self, extcmds):
# Mark everything in the world for upgrade/sync
if self.opts.distro_sync:
self.base.distro_sync()
else:
self.base.upgrade_all()
if self.opts.datadir == DEFAULT_DATADIR:
dnf.util.ensure_dir(self.opts.datadir)
with self.state as state:
state.download_status = 'downloading'
state.target_releasever = self.base.conf.releasever
state.datadir = self.opts.datadir
state.exclude = self.base.conf.exclude
def run_upgrade(self, extcmds):
# Delete symlink ASAP to avoid reboot loops
dnf.yum.misc.unlink_f(MAGIC_SYMLINK)
# change the upgrade status (so we can detect crashed upgrades later)
with self.state as state:
state.upgrade_status = 'incomplete'
self.log_status(_("Starting system upgrade. This will take a while."),
UPGRADE_STARTED_ID)
# reset the splash mode and let the user know we're running
Plymouth.set_mode("updates")
Plymouth.progress(0)
Plymouth.message(_("Starting system upgrade. This will take a while."))
# NOTE: We *assume* that depsolving here will yield the same
# transaction as it did during the download, but we aren't doing
# anything to *ensure* that; if the metadata changed, or if depsolving
# is non-deterministic in some way, we could end up with a different
# transaction and then the upgrade will fail due to missing packages.
#
# One way to *guarantee* that we have the same transaction would be
# to save & restore the Transaction object, but there's no documented
# way to save a Transaction to disk.
#
# So far, though, the above assumption seems to hold. So... onward!
# add the downloaded RPMs to the sack
for f in os.listdir(self.state.datadir):
if f.endswith(".rpm"):
self.base.add_remote_rpm(os.path.join(self.state.datadir, f))
# set up the upgrade transaction
if self.state.distro_sync:
self.base.distro_sync()
else:
self.base.upgrade_all()
def run_clean(self, extcmds):
if self.state.datadir:
logger.info(_("Cleaning up downloaded data..."))
clear_dir(self.state.datadir)
with self.state as state:
state.download_status = None
state.upgrade_status = None
def run_log(self, extcmds):
assert extcmds[0] == 'log'
if len(extcmds) == 1:
list_logs()
else:
n = int(extcmds[1])
show_log(n)
# == transaction_*: do stuff after a successful transaction ===============
def transaction_download(self):
# sanity check: we got a kernel, right?
pkgs = self.cli.base.transaction.install_set
if self.opts.needkernel and not any(p.name.startswith('kernel') for p in pkgs):
raise CliError(NO_KERNEL_MSG)
# Okay! Write out the state so the upgrade can use it.
system_ver = dnf.rpm.detect_releasever(self.base.conf.installroot)
with self.state as state:
state.download_status = 'complete'
state.distro_sync = self.opts.distro_sync
state.allow_erasing = self.cli.demands.allow_erasing
state.best = self.base.conf.best
state.system_releasever = system_ver
state.target_releasever = self.base.conf.releasever
logger.info(DOWNLOAD_FINISHED_MSG, self.base.basecmd)
self.log_status(_("Download finished."),
DOWNLOAD_FINISHED_ID)
def transaction_upgrade(self):
Plymouth.message(_("Upgrade complete! Cleaning up and rebooting..."))
self.log_status(_("Upgrade complete! Cleaning up and rebooting..."),
UPGRADE_FINISHED_ID)
self.run_clean([])
if self.opts.reboot:
reboot()