summaryrefslogtreecommitdiffstats
path: root/build/create_repo.sh
blob: 5187517218de638a75f92f0c420e23715b08da3c (plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
#!/usr/bin/env bash

# Set distribution type
distro_type="$(cat /etc/*-release | grep -w "ID" | awk -F'=' '{ print $2 }' | tr -d '"')"

# Path to cloned offline-installer build directory with docker_entrypoint script
volume_offline_directory="$(readlink -f $(dirname ${0}))"

# Destination path for created repository
volume_repo_directory="$(pwd)"

# Path inside container with cloned offline-installer build directory
container_offline_volume="/mnt/offline/"

# Target repository path inside container
container_repo_volume="/mnt/repo/"

# Additional packages lists files path within container
container_list_volume="/mnt/additional-lists/"

# Use cache by default
drop_cache=false

# Show script usage
help () {
cat <<EOF
Wrapper script running docker container for creating package repository

Repository type is set with --target-platform option and the default is to use host OS platform type

usage: create_repo.sh [OPTION]...


  -d | --destination-repository    target path to store downloaded packages. Current directory by default
  -c | --cloned-directory          path to directory containing this and docker-entrypoint scripts (offline-installer/build directory)
                                   Set it only when you want to use different script/datalists
  -t | --target-platform           target repository platform type (ubuntu/rhel/centos)
  -a | --additional-list           additional packages list; can be used multiple times for more additional lists
  -n | --container-name-suffix     add custom suffix to docker container name
  -r | --drop-cache                remove cached packages (use package cache by default)
  -h | --help                      show this help

If build folder from offline repository is not specified current one will be used by default.
EOF
}

# Get distribution type
# Set Docker image name and version based on type of linux distribution
# Set expected directory for RPM/DEB packages
set_environment () {
    case "$1" in
    ubuntu)
        distro_type="ubuntu"
        docker_image="ubuntu:18.04"
        expected_dir="resources/pkg/deb"
        container_name="${1}_repo${container_name_suffix}"
    ;;
    centos|rhel)
        distro_type="rhel"
        docker_image="centos:centos7.9.2009"
        expected_dir="resources/pkg/rpm"
        container_name="${1}_repo${container_name_suffix}"
    ;;
    *)
        echo "Unknown type of linux distribution."
        exit 1
    ;;
    esac
}

# Getting input parametters
if [[ $# -eq 0 ]] ; then
    help # show help
    exit 0
fi

while [[ $# -gt 0 ]]
do
    case "$1" in
        -h|--help)
            # Help parametter
            help # show help
            exit 0
            ;;
        -c|--cloned-directory)
            # Directory parameter
            # Set path to offline-installer build directory
            volume_offline_directory="$2"
            shift
            ;;
        -d|--destination-repository)
            # Repository directory parameter
            # Set destination path for created repository
            volume_repo_directory="$2"
            shift
            ;;
        -t|--target-platform)
            # Repository type (rpm/deb)
            # Set target platform for repository
            target_input="$2"
            shift
            ;;
        -a|--additional-list)
            # Array of additional packages lists
            additional_lists+=("$2")
            shift
            ;;
        -n|--container-name-suffix)
            # Set custom container name suffix
            container_name_suffix="_${2}"
            shift
            ;;
        -r|--drop-cache)
            # Set flag to clean cache
            drop_cache=true
            ;;
        *)
            # unknown option
            help # show help
            exit 1
            ;;
    esac
    shift
done

# Check if user specified repository type
# This setting has higher priority than distribution type
if ! test -z "$target_input"
then
    set_environment "$target_input"
else
    set_environment "$distro_type"
fi

# Check if path contains expected components:
# "resources/pkg/rpm" for Rhel/CentOS or
# "resources/pkg/deb" for Ubuntu/Debian
if ! [[ "/$volume_repo_directory/" = *"/$expected_dir/"* ]]; then
    # Create repo folder if it doesn't exist
    case "$distro_type" in
        ubuntu)
            volume_repo_directory="$volume_repo_directory"/resources/pkg/deb
        ;;
        rhel)
            volume_repo_directory="$volume_repo_directory"/resources/pkg/rpm
        ;;
    esac
    [ ! -d "$volume_repo_directory" ] && mkdir -p $volume_repo_directory
fi

# Check if container is already running
if [ ! $(docker ps -q -f name="^${container_name}$") ];
then
    # run repo container
    # name of container $container_name
    # docker entrypoint script from mounted volume
    # with dynamic parameters
    # mount additional packages lists to container
    param_array=()
    mounted_lists=()
    param_array+=(--directory ${container_repo_volume})
    param_array+=(--list ${container_offline_volume}data_lists/)
    param_array+=(--packages-lists-path ${container_list_volume})
    if ${drop_cache};
    then
        param_array+=(--drop-cache)
    fi
    [[ ! ${#additional_lists[@]} -eq 0 ]] && \
        for array_list in "${additional_lists[@]}";
        do
            param_array+=(--additional-list "${array_list##*/}") && \
            mounted_lists+=(-v ${array_list}:${container_list_volume}${array_list##*/})
        done

        docker run --name $container_name \
               -v ${volume_offline_directory}:${container_offline_volume} \
               -v ${volume_repo_directory}:${container_repo_volume} \
               "${mounted_lists[@]}" \
               --rm \
               --entrypoint="${container_offline_volume}docker-entrypoint.sh" \
                    ${docker_image} \
                    "${param_array[@]}"
fi