31 lines
493 B
JSON
31 lines
493 B
JSON
[
|
|
{
|
|
"name": "prerequisites",
|
|
"become": true,
|
|
"ansible.builtin.apt": {
|
|
"pkg": [
|
|
"curl",
|
|
"ca-certificates",
|
|
"apt-transport-https",
|
|
"gnupg2"
|
|
]
|
|
}
|
|
},
|
|
{
|
|
"name": "install script",
|
|
"become": true,
|
|
"ansible.builtin.shell": {
|
|
"cmd": "curl -s https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.deb.sh | sudo bash"
|
|
}
|
|
},
|
|
{
|
|
"name": "prerequisites",
|
|
"become": true,
|
|
"ansible.builtin.apt": {
|
|
"pkg": [
|
|
"gitlab-ce"
|
|
]
|
|
}
|
|
}
|
|
]
|
|
|