Skip to content
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
linux-kdevops
/
kdevops
Public
Notifications
You must be signed in to change notification settings
Fork
15
Star
37
Code
Issues
20
Pull requests
0
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Projects
Security and quality
Insights
Files
Expand file tree
main
Breadcrumbs
kdevops
/
Makefile.linux-mirror
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
39 lines (29 loc) · 1.01 KB
main
Breadcrumbs
kdevops
/
Makefile.linux-mirror
Copy path
Top
File metadata and controls
Code
Blame
39 lines (29 loc) · 1.01 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# SPDX-License-Identifier: copyleft-next-0.3.1
ifeq (y,$(CONFIG_MIRROR_INSTALL))
LINUX_MIRROR_ARGS :=
LINUX_MIRROR_ARGS += install_linux_mirror=True
MIRROR_CODE := $(TOPDIR)/playbooks/roles/linux-mirror/linux-mirror-systemd/
kdevops_linux_mirror: $(KDEVOPS_EXTRA_VARS)
$(Q)ansible-playbook \
--tags vars,mirror \
$(KDEVOPS_PLAYBOOKS_DIR)/linux-mirror.yml \
--extra-vars=@./extra_vars.yaml
PHONY += kdevops_linux_mirror
mirror: $(KDEVOPS_EXTRA_VARS) kdevops_linux_mirror
PHONY += mirror
mirror-status: $(KDEVOPS_EXTRA_VARS)
$(Q)ansible-playbook \
--tags vars,mirror-status \
$(KDEVOPS_PLAYBOOKS_DIR)/linux-mirror.yml \
--extra-vars=@./extra_vars.yaml
PHONY += mirror-status
ANSIBLE_EXTRA_ARGS += $(LINUX_MIRROR_ARGS)
mirror-help-menu:
@echo "Mirror options:"
@echo "mirror - sets up all mirrors (Linux git, Nix cache)"
@echo "mirror-status - checks systemd mirrors status"
@echo ""
@echo "Note: Docker mirror targets are in 'make docker-mirror-help'"
@echo ""
HELP_TARGETS += mirror-help-menu
endif
You can’t perform that action at this time.