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
Commits
f5c6ee6a
Verified
Commit
f5c6ee6a
authored
2 years ago
by
Alexander Olofsson
Browse files
Options
Downloads
Patches
Plain Diff
Fix extension namespacing
parent
d0b4e274
No related branches found
No related tags found
No related merge requests found
Pipeline
#87566
passed
2 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
app/services/foreman/unattended_installation/concerns/host_finder_extensions.rb
+16
-18
16 additions, 18 deletions
...nattended_installation/concerns/host_finder_extensions.rb
with
16 additions
and
18 deletions
app/services/foreman/unattended_installation/concerns/host_finder_extensions.rb
+
16
−
18
View file @
f5c6ee6a
# frozen_string_literal: true
module
ForemanUuidBoot
module
HostFinderExtensions
def
search
host
=
super
host
||=
find_host_by_uuid
unless
token_from_params
.
present?
module
HostFinderExtensions
def
search
host
=
super
host
||=
find_host_by_uuid
unless
token_from_params
.
present?
host
end
host
end
private
private
def
find_host_by_uuid
return
unless
(
uuid
=
query_params
[
'uuid'
])
def
find_host_by_uuid
return
unless
(
uuid
=
query_params
[
'uuid'
])
fact_name_id
=
FactName
.
where
(
name:
'uuid'
).
map
(
&
:id
)
return
unless
fact_name_id
.
any?
fact_name_id
=
FactName
.
where
(
name:
'uuid'
).
map
(
&
:id
)
return
unless
fact_name_id
.
any?
query
=
{
fact_values:
{
fact_name_id:
fact_name_id
,
value:
uuid
}
}
hosts
=
Host
.
joins
(
:fact_values
).
where
(
query
).
order
(
:created_at
)
query
=
{
fact_values:
{
fact_name_id:
fact_name_id
,
value:
uuid
}
}
hosts
=
Host
.
joins
(
:fact_values
).
where
(
query
).
order
(
:created_at
)
Rails
.
logger
.
warn
(
"Multiple hosts found with
#{
uuid
}
, picking up the most recent"
)
if
hosts
.
count
>
1
Rails
.
logger
.
warn
(
"Multiple hosts found with
#{
uuid
}
, picking up the most recent"
)
if
hosts
.
count
>
1
return
unless
hosts
.
present?
return
unless
hosts
.
present?
hosts
.
last
.
reload
end
hosts
.
last
.
reload
end
end
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment