Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
package.pxelinux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Simple Deploy- and Management
package.pxelinux
Compare Revisions
e3bd335c7ee50dc2aea1159da68c6fe0295c42be...d451fe69eb69a4c7ab7620bfb05a7eb567fa36f2
Source
d451fe69eb69a4c7ab7620bfb05a7eb567fa36f2
Select Git revision
...
Target
e3bd335c7ee50dc2aea1159da68c6fe0295c42be
Select Git revision
Compare
Commits (2)
added owner and group to pxebinary
· e5a9a187
Pietsch, Martin
authored
Jul 09, 2019
e5a9a187
removed owner and group from setimage
· d451fe69
Pietsch, Martin
authored
Jul 09, 2019
d451fe69
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
tasks/main.yml
tasks/main.yml
+2
-0
tasks/setimage.yml
tasks/setimage.yml
+0
-4
No files found.
tasks/main.yml
View file @
d451fe69
...
...
@@ -30,6 +30,8 @@
copy
:
src
:
"
{{
item
}}"
dest
:
"
{{
'%s/%s'
|
format(pxelinux_root_path,
item)
}}"
owner
:
"
{{
_pxelinux_file_owner
}}"
group
:
"
{{
_pxelinux_file_group
}}"
mode
:
0644
with_items
:
-
"
chain.c32"
...
...
tasks/setimage.yml
View file @
d451fe69
---
-
import_tasks
:
_init.yml
-
name
:
set image file for host {{ pxelinux_image_boothost }}
copy
:
src
:
"
{{
'%s/pxelinux.cfg/%s-%s-%s'
|
format(pxelinux_root_path,
pxelinux_image_distribution,
pxelinux_image_release,
pxelinux_image_architecture)
}}"
dest
:
"
{{
'%s/pxelinux.cfg/01-%s'
|
format(pxelinux_root_path,
hostvars[pxelinux_image_boothost].network.devices[host.network.control_device].mac
|
replace(':','-'))
}}"
owner
:
"
{{
_pxelinux_file_owner
}}"
group
:
"
{{
_pxelinux_file_group
}}"
mode
:
0644
remote_src
:
yes
...
...