13 lines
309 B
Bash
Executable File
13 lines
309 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
dnf update -y
|
|
|
|
dnf install -y wget curl policycoreutils openssh-server openssh-clients perl
|
|
|
|
wget "https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh" -O "script.rpm.sh"
|
|
|
|
bash script.rpm.sh
|
|
|
|
EXTERNAL_URL="https://gitlab.example.com" dnf install -y gitlab-ce
|
|
|