-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🧹 ensure we use fqdn for hostname platform id on unix systems (#3166)
- Loading branch information
1 parent
7e5ec58
commit 03b18a8
Showing
3 changed files
with
70 additions
and
8 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
[commands."hostname"] | ||
stdout="myhost" | ||
|
||
[commands."hostname -f"] | ||
stdout="myhost.example.com" | ||
|
||
[commands."uname -s"] | ||
stdout = "Linux" | ||
|
||
[commands."uname -m"] | ||
stdout = "x86_64" | ||
|
||
[commands."uname -r"] | ||
stdout = "4.9.125-linuxkit" | ||
|
||
[files."/etc/redhat-release"] | ||
content = "Red Hat Enterprise Linux Server release 7.2 (Maipo)" | ||
|
||
[files."/etc/os-release"] | ||
content = """ | ||
NAME="Red Hat Enterprise Linux Server" | ||
VERSION="7.2 (Maipo)" | ||
ID="rhel" | ||
ID_LIKE="fedora" | ||
VERSION_ID="7.2" | ||
PRETTY_NAME="Red Hat Enterprise Linux Server 7.2 (Maipo)" | ||
ANSI_COLOR="0;31" | ||
CPE_NAME="cpe:/o:redhat:enterprise_linux:7.2:GA:server" | ||
HOME_URL="https://www.redhat.com/" | ||
BUG_REPORT_URL="https://bugzilla.redhat.com/" | ||
REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 7" | ||
REDHAT_BUGZILLA_PRODUCT_VERSION=7.2 | ||
REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux" | ||
REDHAT_SUPPORT_PRODUCT_VERSION="7.2" | ||
""" |