~renanrodrigo/update-manager/ss

« back to all changes in this revision

Viewing changes to HweSupportStatus/consts.py

  • Committer: Łukasz 'sil2100' Zemczak
  • Date: 2022-04-11 07:57:47 UTC
  • Revision ID: lukasz.zemczak@canonical.com-20220411075747-mi75tk95efenm8g7
Adjust dates in hwe-support-status for jammy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
 
8
8
# the day on which the short support HWE stack goes EoL
9
 
HWE_EOL_DATE = datetime.date(2025, 4, 30)
 
9
HWE_EOL_DATE = datetime.date(2027, 4, 30)
10
10
 
11
11
# the day on which the next LTS first point release is available
12
12
# used to propose a release upgrade
13
 
NEXT_LTS_DOT1_DATE = datetime.date(2022, 7, 21)
 
13
NEXT_LTS_DOT1_DATE = datetime.date(2024, 7, 15)
14
14
 
15
15
# end of the month in which this LTS goes EoL
16
 
LTS_EOL_DATE = datetime.date(2025, 4, 30)
 
16
LTS_EOL_DATE = datetime.date(2027, 4, 30)
17
17
 
18
18
 
19
19
class Messages:
27
27
    APT_UPGRADE = _("""
28
28
To upgrade to a supported (or longer-supported) configuration:
29
29
 
30
 
* Upgrade from Ubuntu 18.04 LTS to Ubuntu 20.04 LTS by running:
 
30
* Upgrade from Ubuntu 20.04 LTS to Ubuntu 22.04 LTS by running:
31
31
sudo do-release-upgrade %s
32
32
 
33
33
OR
58
58
and graphics stack) of your system will no longer be available.
59
59
 
60
60
For more information, please see:
61
 
http://wiki.ubuntu.com/2004_HWE_EOL
 
61
http://wiki.ubuntu.com/2204_HWE_EOL
62
62
""") % HWE_EOL_DATE.isoformat()
63
63
 
64
64
    HWE_SUPPORT_HAS_ENDED = _("""
65
65
WARNING: Security updates for your current Hardware Enablement
66
66
Stack ended on %s:
67
 
 * http://wiki.ubuntu.com/2004_HWE_EOL
 
67
 * http://wiki.ubuntu.com/2204_HWE_EOL
68
68
""") % HWE_EOL_DATE.isoformat()