aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_data/foreman_setup.sh
blob: 4d869865217b792e7f3d6d3565e45a27a47941c9 (plain) (blame)
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
#!/bin/bash

SUCCESS=0

if grep -iq centos /etc/os-release; then
    if  [[ `echo | awk "{print ($FOREMAN_VER >= 3.4)}"` -eq 1 ]]; then
        dnf -y install https://yum.puppet.com/puppet7-release-el-8.noarch.rpm
        dnf -y install https://yum.theforeman.org/releases/$FOREMAN_VER/el8/x86_64/foreman-release.rpm
        dnf -y module enable foreman:el8
    else
        dnf -y install https://yum.puppet.com/puppet6-release-el-8.noarch.rpm
        dnf -y install https://yum.theforeman.org/releases/$FOREMAN_VER/el8/x86_64/foreman-release.rpm
        dnf -y module enable ruby:2.7
    fi
    dnf -y install foreman-installer && SUCCESS=1
elif grep -iq debian /etc/os-release; then
    apt-get update
    apt-get -y install ca-certificates locales
    sed -i 's/^# *\(en_US.UTF-8\)/\1/' /etc/locale.gen
    locale-gen
    export LC_ALL=en_US.UTF-8
    export LANG=en_US.UTF-8
    curl https://apt.puppet.com/puppet7-release-bullseye.deb --output /root/puppet7-release-bullseye.deb
    apt-get install /root/puppet7-release-bullseye.deb
    curl https://deb.theforeman.org/foreman.asc --output /etc/apt/trusted.gpg.d/foreman.asc
    echo "deb http://deb.theforeman.org/ bullseye $FOREMAN_VER" | tee /etc/apt/sources.list.d/foreman.list
    echo "deb http://deb.theforeman.org/ plugins $FOREMAN_VER" | tee -a /etc/apt/sources.list.d/foreman.list
    apt-get update
    apt-get -y install foreman-installer && SUCCESS=1
fi

if [[ $SUCCESS == 1 ]]; then
    foreman-installer --foreman-db-password='S0Sdb=p@ssw0rd!' --foreman-initial-admin-password='S0S@dmin\\p@ssw0rd!'
else
    echo "Setup failed"
    exit 1
fi