forked from hetzneronline/installimage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
imageinfo.functions.sh
74 lines (61 loc) · 1.75 KB
/
imageinfo.functions.sh
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
#!/usr/bin/env bash
#
# imageinfo functions
#
# (c) 2019-2022, Hetzner Online GmbH
#
debian_buster_image() {
[[ "${IAM,,}" == 'debian' ]] || return 1
( ((IMG_VERSION >= 100)) && ((IMG_VERSION <= 109)) ) || ( ((IMG_VERSION >= 1010)) && ((IMG_VERSION < 1100)) )
}
debian_bullseye_image() {
[[ "${IAM,,}" == 'debian' ]] || return 1
((IMG_VERSION >= 1100)) && ((IMG_VERSION <= 1200))
}
debian_bookworm_image() {
[[ "${IAM,,}" == 'debian' ]] || return 1
((IMG_VERSION >= 1200)) && ((IMG_VERSION <= 1300))
}
other_image() {
local image="$1"
while read other_image; do
[[ "${image##*/}" == "$other_image" ]] && return 0
done < <(other_images)
return 1
}
old_image() {
local image="$1"
image="$(readlink -f "$image")"
[[ -e "$image" ]] || return 1
[[ "${image%/*}" == "$(readlink -f "$OLDIMAGESPATH")" ]]
}
rhel_based_image() {
[[ "$IAM" == 'centos' ]] ||
[[ "$IAM" == 'rockylinux' ]] ||
[[ "$IAM" == 'almalinux' ]] ||
[[ "$IAM" == 'rhel' ]]
}
rhel_9_based_image() {
[[ "$IAM" == 'centos' ]] && ((IMG_VERSION >= 90)) && ((IMG_VERSION != 610)) && return
rhel_based_image && ((IMG_VERSION >= 90)) && return
return 1
}
uses_network_manager() {
[[ "$IAM" == 'centos' ]] && ((IMG_VERSION >= 80)) && ((IMG_VERSION != 610)) && ! is_cpanel_install && return
[[ "$IAM" == 'rockylinux' ]] && return
[[ "$IAM" == 'rhel' ]] && return
[[ "$IAM" == 'almalinux' ]] && ! is_cpanel_install && return
return 1
}
debian_based_image() {
[[ "$IAM" == 'debian' ]] || [[ "$IAM" == 'ubuntu' ]]
}
hwe_image() {
[[ "$IMAGE_FILE" =~ -hwe\. ]]
}
image_requires_xfs_version_check() {
[[ "$IAM" == 'ubuntu' ]] && ((IMG_VERSION <= 2004)) && return 0
[[ "$IAM" == 'debian' ]] && ((IMG_VERSION < 1100)) && return 0
return 1
}
# vim: ai:ts=2:sw=2:et