Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
foreman_uuid_boot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LiU IT - Infrastructure
foreman_uuid_boot
Compare revisions
63d45f078430fed4cf2df21a929800a8678a3245 to 1edb5a26a67492e698e6c2cfa43bab500d8d70ed
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
ITI/foreman_uuid_boot
Select target project
No results found
1edb5a26a67492e698e6c2cfa43bab500d8d70ed
Select Git revision
Branches
master
Tags
v0.1.0
v0.1.1
v0.2.0
v0.3.0
v0.4.0
v0.4.1
v0.4.2
v0.4.3
v0.4.4
v0.5.0
Swap
Target
ITI/foreman_uuid_boot
Select target project
ITI/foreman_uuid_boot
1 result
63d45f078430fed4cf2df21a929800a8678a3245
Select Git revision
Branches
master
Tags
v0.1.0
v0.1.1
v0.2.0
v0.3.0
v0.4.0
v0.4.1
v0.4.2
v0.4.3
v0.4.4
v0.5.0
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Restructure UUID facet creation
· a4e97544
Alexander Olofsson
authored
1 year ago
Verified
a4e97544
Version 0.4.4
· 1edb5a26
Alexander Olofsson
authored
1 year ago
Verified
1edb5a26
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
app/models/foreman_uuid_boot/uuidboot_host_facet.rb
+11
-4
11 additions, 4 deletions
app/models/foreman_uuid_boot/uuidboot_host_facet.rb
lib/foreman_uuid_boot/version.rb
+1
-1
1 addition, 1 deletion
lib/foreman_uuid_boot/version.rb
with
12 additions
and
5 deletions
app/models/foreman_uuid_boot/uuidboot_host_facet.rb
View file @
1edb5a26
...
...
@@ -5,10 +5,17 @@ module ForemanUuidBoot
include
Facets
::
Base
def
self
.
populate_fields_from_facts
(
host
,
parser
,
_type
,
_proxy
)
facet
=
host
.
uuidboot_facet
||
host
.
build_uuidboot_facet
facet
.
uuid
=
parser
.
facts
.
dig
(
'dmi'
,
'product'
,
'uuid'
)
||
parser
.
facts
[
'uuid'
]
facet
.
save
if
facet
.
uuid
&&
facet
.
changed?
facet
.
destroy
if
!
facet
.
uuid
&&
facet
.
persisted?
uuid
=
parser
.
facts
.
dig
(
'dmi'
,
'product'
,
'uuid'
)
||
parser
.
facts
[
'uuid'
]
if
uuid
facet
=
host
.
uuidboot_facet
||
host
.
build_uuidboot_facet
facet
.
uuid
=
uuid
facet
.
save
if
facet
.
changed?
||
!
facet
.
persisted?
facet
else
host
.
uuidboot_facet
&
.
destroy
nil
end
end
end
end
This diff is collapsed.
Click to expand it.
lib/foreman_uuid_boot/version.rb
View file @
1edb5a26
# frozen_string_literal: true
module
ForemanUuidBoot
VERSION
=
'0.4.
3
'
VERSION
=
'0.4.
4
'
end
This diff is collapsed.
Click to expand it.