-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cfd72bf
commit 04fed8d
Showing
5 changed files
with
26 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
landscape-client (24.08-0landscape0) jammy; urgency=medium | ||
|
||
* feat: added flag to skip sending a registration request | ||
* fix(snap): reduce computer title retry delay | ||
* fix(snap): retry setting the computer title | ||
* fix: remove system exit in landscape-sysinfo.wrapper | ||
* fix: allow for oracular version of pycurl error string (LP: #2068050) | ||
* fix: add non-filtered interfaces to the API response (LP: #2052834) | ||
|
||
-- Mitch Burton <[email protected]> Tue, 06 Aug 2024 11:13:10 -0700 | ||
|
||
landscape-client (24.04-0landscape0) jammy; urgency=medium | ||
|
||
* Improvements: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Tests: smoke | ||
Restrictions: allow-stderr, needs-sudo, superficial |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/sh | ||
|
||
set -ex | ||
|
||
landscape-config --help | grep --silent is-registered | ||
# --is-registered expected to fail, as this is a fresh system and will | ||
# not be registered yet. | ||
is_registered=0 | ||
sudo landscape-config --is-registered || is_registered=$? | ||
[ "$is_registered" -eq 5 ] | ||
landscape-client --help | grep --silent version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters