2021-06-22 16:13:42 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-10-21 01:26:39 +02:00
|
|
|
gitlab_version="13.12.12"
|
2021-06-22 16:13:42 +02:00
|
|
|
|
|
|
|
# sha256sum found here: https://packages.gitlab.com/gitlab
|
|
|
|
gitlab_debian_version="buster"
|
|
|
|
|
2021-10-21 01:26:39 +02:00
|
|
|
gitlab_x86_64_buster_source_sha256="75c74c2d7257d4247e5b0bc0aee774e616f69b58c25f1b48fba097078e971955"
|
2021-06-22 16:13:42 +02:00
|
|
|
|
2021-10-21 01:26:39 +02:00
|
|
|
gitlab_arm64_buster_source_sha256="942191e6f4d4cbce90774c6ec294f6b9322a6c42d1b836826af752af76c88e31"
|
2021-06-22 16:13:42 +02:00
|
|
|
|
2021-10-21 01:26:39 +02:00
|
|
|
gitlab_arm_buster_source_sha256="5ebc80181520ab24efe46842d41ada153d3970fd7164e2875afb37de85f2900e"
|
2021-06-22 16:13:42 +02:00
|
|
|
|
|
|
|
architecture=$(ynh_app_setting_get --app="$app" --key=architecture)
|
|
|
|
|
|
|
|
if [ "$architecture" = "x86-64" ]; then
|
|
|
|
gitlab_source_sha256=$gitlab_x86_64_buster_source_sha256
|
|
|
|
elif [ "$architecture" = "arm64" ]; then
|
|
|
|
gitlab_source_sha256=$gitlab_arm64_buster_source_sha256
|
|
|
|
elif [ "$architecture" = "arm" ]; then
|
|
|
|
gitlab_source_sha256=$gitlab_arm_buster_source_sha256
|
|
|
|
fi
|
|
|
|
|
|
|
|
gitlab_filename="gitlab-ce-${gitlab_version}.deb"
|
|
|
|
|
|
|
|
# Action to do in case of failure of the package_check
|
|
|
|
package_check_action() {
|
|
|
|
ynh_backup_if_checksum_is_different --file="$config_path/gitlab.rb"
|
|
|
|
cat <<EOF >> "$config_path/gitlab.rb"
|
|
|
|
# Last chance to fix Gitlab
|
|
|
|
package['modify_kernel_parameters'] = false
|
|
|
|
EOF
|
|
|
|
ynh_store_file_checksum --file="$config_path/gitlab.rb"
|
|
|
|
}
|