From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 1/3] oci: Add detection for Oracle Cloud
Date: Tue, 21 Jul 2020 10:36:39 +0000 [thread overview]
Message-ID: <20200721103641.30305-1-michael.tremer@ipfire.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 1284 bytes --]
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
src/initscripts/system/cloud-init | 2 ++
src/initscripts/system/functions | 11 +++++++++++
2 files changed, 13 insertions(+)
diff --git a/src/initscripts/system/cloud-init b/src/initscripts/system/cloud-init
index 284e24d7b..d39552b01 100644
--- a/src/initscripts/system/cloud-init
+++ b/src/initscripts/system/cloud-init
@@ -15,6 +15,8 @@ case "${1}" in
scriptname="/etc/rc.d/helper/azure-setup"
elif running_on_gcp; then
scriptname="/etc/rc.d/helper/gcp-setup"
+ elif running_on_oci; then
+ scriptname="/etc/rc.d/helper/oci-setup"
else
# This system is not running in the cloud
exit 0
diff --git a/src/initscripts/system/functions b/src/initscripts/system/functions
index b6e6507d6..30119918c 100644
--- a/src/initscripts/system/functions
+++ b/src/initscripts/system/functions
@@ -834,4 +834,15 @@ running_on_gcp() {
return 1
}
+running_on_oci() {
+ if [ -r "/sys/devices/virtual/dmi/id/chassis_asset_tag" ]; then
+ local asset_tag="$(</sys/devices/virtual/dmi/id/chassis_asset_tag)"
+
+ [ "${asset_tag}" = "OracleCloud.com" ] && return 0
+ fi
+
+ # We are not running on OCI
+ return 1
+}
+
# End $rc_base/init.d/functions
--
2.20.1
next reply other threads:[~2020-07-21 10:36 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-21 10:36 Michael Tremer [this message]
2020-07-21 10:36 ` [PATCH 2/3] oci: Add automatic configuration script Michael Tremer
2020-07-21 10:36 ` [PATCH 3/3] smt: Do not disable SMT in virtual machines Michael Tremer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200721103641.30305-1-michael.tremer@ipfire.org \
--to=michael.tremer@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox