File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change 37
37
- podman
38
38
state : present
39
39
40
+ # Prepare and clone Git repositories
41
+ # ##################################
42
+ - name : Create Git repository directories
43
+ ansible.builtin.file :
44
+ path : " /usr/share/caddy/{{ item }}"
45
+ state : directory
46
+ mode : 0755
47
+ owner : caddy
48
+ group : caddy
49
+ loop :
50
+ - mpl-brochure-site
51
+ - matplotlib.github.com
52
+ - basemap
53
+ - cheatsheets
54
+ - cycler
55
+ - devdocs
56
+ - governance
57
+ - matplotblog
58
+ - mpl-altair
59
+ - mpl-bench
60
+ - mpl-gui
61
+ - mpl-third-party
62
+
63
+ - name : Clone Git repositories
64
+ become : true
65
+ become_user : caddy
66
+ ansible.builtin.git :
67
+ repo : " https://github.com/matplotlib/{{ item }}"
68
+ dest : " /usr/share/caddy/{{ item }}"
69
+ version : gh-pages
70
+ loop :
71
+ - mpl-brochure-site
72
+ - matplotlib.github.com
73
+ - basemap
74
+ - cheatsheets
75
+ - cycler
76
+ - devdocs
77
+ - governance
78
+ - matplotblog
79
+ - mpl-altair
80
+ - mpl-bench
81
+ - mpl-gui
82
+ - mpl-third-party
83
+
40
84
# Caddy server setup
41
85
# ##################
42
86
- name : Configure Caddy
You can’t perform that action at this time.
0 commit comments