public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH 1/3] oci: Add detection for Oracle Cloud
@ 2020-07-21 10:36 Michael Tremer
  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
  0 siblings, 2 replies; 3+ messages in thread
From: Michael Tremer @ 2020-07-21 10:36 UTC (permalink / raw)
  To: development

[-- 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


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-07-21 10:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-21 10:36 [PATCH 1/3] oci: Add detection for Oracle Cloud Michael Tremer
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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox