#!/bin/bash

##CENTOS - RHEL

yum install -y curl policycoreutils-python openssh-server

##SI APLICA
#firewall-cmd --permanent --add-service=http
#firewall-cmd --permanent --add-service=https
#firewall-cmd --reload

#INSTALAR E INICIAR POSTFIX - POR DEFECTO VIENE INSTALADO Y ARRIBA
yum install -y postfix
systemctl start postfix
systemctl enable postfix

#INSTALAR GITLAB
curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
yum install -y gitlab-ce

