forked from vmware-samples/packer-examples-for-vsphere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
executable file
·995 lines (872 loc) · 37 KB
/
build.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
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
#!/usr/bin/env bash
# Copyright 2023-2024 Broadcom. All rights reserved.
# SPDX-License-Identifier: BSD-2
follow_link() {
file="$1"
while [ -L "$file" ]; do
file=$(readlink "$file")
done
echo "$file"
}
# Get the script path.
#script_path=$(realpath "$(dirname "$(follow_link "$0")")")
script_path=$(
cd "$(dirname "$(follow_link "$0")")" || exit
pwd
)
run_check_dependencies=false
run_check_jq=false
run_show_help=false
# This function prompts the user to press Enter to continue.
press_enter_continue() {
printf "Press \033[32mEnter\033[0m to continue.\n"
read -r
exec "$0"
}
# This function prompts the user to press Enter to exit.
press_enter_exit() {
printf "Press \033[31mEnter\033[0m to exit.\n"
read -r
exit 0
}
# This function prompts the user to press Enter to continue.
press_enter() {
cd "$script_path" || exit
printf "Press \033[32mEnter\033[0m to continue.\n"
read -r
exec $0
}
# Set config_path if it's not already set
if [ -z "$config_path" ]; then
config_path=$(
cd "${script_path}/config" || exit
pwd
)
fi
# This function displays the information about the script and project.
info() {
project_name=$(get_project_info "name")
project_description=$(get_project_info "description")
project_version=$(get_project_info "version")
project_license=$(get_project_info "license[0].name")
project_github_url=$(get_project_info "urls.github")
project_docs_url=$(get_project_info "urls.documentation")
clear
printf "\033[32m%s\033[0m: \033[34m%s\033[0m\n\n" "$project_name" "$project_version"
printf "Copyright 2023-%s Broadcom. All Rights Reserved.\n\n" "$(date +%Y)"
printf "License: %s\n\n" "$project_license"
printf "%s\n\n" "$project_description"
printf "GitHub Repository: %s\n" "$project_github_url"
printf "Documentation: %s\n\n" "$project_docs_url"
show_help "continue"
press_enter_continue
}
# This function displays the help message.
show_help() {
local exit_after=${1:-"exit"}
script_name=$(basename "$0")
printf "\033[0;32m Usage\033[0m: %s [options]\n\n" "$script_name"
printf "\033[0;34m Options:\033[0m\n"
printf " \033[0;34m --help, -h, -H\033[0m Display this help message.\n\n"
printf " \033[0;34m --deps, -d, -D\033[0m Check the dependencies.\n"
printf " \033[0;34m --debug, -b, -B\033[0m Enable debug mode.\n"
printf " \033[0;34m --json, -j, -J\033[0m Specify the JSON file path.\n"
printf " \033[0;34m --os\033[0m Specify the operating system (Linux, Windows).\n"
printf " \033[0;34m --dist\033[0m Specify the distribution (e.g., 'Ubuntu', 'Windows Server').\n"
printf " \033[0;34m --version\033[0m Specify the version of the distribution.\n"
printf " \033[0;34m --edition\033[0m Specify the edition (e.g., 'Standard', 'Datacenter').\n"
printf " \033[0;34m --auto-continue\033[0m Automatically continue without user prompts.\n"
printf " \033[0;34m --show, -s, -S\033[0m Display the build command used to build the image.\n"
# Handle user input or exit.
if [[ -z "$input" ]]; then
[ "$exit_after" = "exit" ] && exit 0
else
press_enter_continue
fi
}
json_path="project.json"
# Check for jq
check_jq() {
cmd="jq"
if ! command -v $cmd &>/dev/null; then
echo -e "\033[0;31m[✘]\033[0m $cmd is not installed."
exit 1
fi
}
check_ansible() {
cmd="ansible"
local deps_version=$(jq -r --arg cmd $cmd '.dependencies[] | select(.name == $cmd ) | .version_requirement' $json_path)
required_version=$(echo "$deps_version" | tr -d '>=' | xargs)
if ! command -v $cmd &>/dev/null; then
echo -e "\033[0;31m[✘]\033[0m $cmd is not installed. $required_version or later is required."
exit 1
else
installed_version=$($cmd --version | head -n 1 | awk '{print $3}' | tr -d '[]')
if [ "$(printf '%s\n' "$required_version" "$installed_version" | sort -V | head -n1)" != "$required_version" ]; then
echo -e "\033[0;31m[✘]\033[0m $cmd-core $installed_version installed. $required_version or later is required."
exit 1
fi
fi
}
check_packer() {
cmd="packer"
local deps_version=$(jq -r --arg cmd $cmd '.dependencies[] | select(.name == $cmd ) | .version_requirement' $json_path)
required_version=$(echo "$deps_version" | tr -d '>=' | xargs)
if ! command -v $cmd &>/dev/null; then
echo -e "\033[0;31m[✘]\033[0mP $cmd is not installed. $required_version or later is required."
exit 1
else
installed_version=$($cmd version | head -n 1 | awk '{print $2}' | tr -d 'v')
if [ "$(printf '%s\n' "$required_version" "$installed_version" | sort -V | head -n1)" != "$required_version" ]; then
echo -e "\033[0;31m[✘]\033[0m $cmd $installed_version installed. $required_version or later is required."
exit 1
fi
fi
}
# Check if jq is installed.
check_jq
# Check if ansible is installed.
check_ansible
# Check if packer is installed.
check_packer
check_command() {
cmd=$1
capitalized_cmd=$(echo "$cmd" | awk '{print toupper(substr($0,1,1))substr($0,2)}')
version_requirement=$(jq -r --arg cmd "$cmd" '.dependencies[] | select(.name == $cmd) | .version_requirement' "$json_path")
operator=$(echo "$version_requirement" | cut -d " " -f 1)
required_version=$(echo "$version_requirement" | cut -d " " -f 2)
RED='\033[0;31m'
GREEN='\033[0;32m'
NC='\033[0m' # No Color
CHECKMARK="${GREEN}[✔]${NC}"
CROSSMARK="${RED}[✘]${NC}"
if command -v "$cmd" &>/dev/null; then
installed_version=$($cmd --version | head -n 1 | awk '{print $NF}' | sed 's/[^0-9.]*//g')
case $operator in
">=")
if echo -e "$required_version\n$installed_version" | sort -V -C; then
echo -e "$CHECKMARK $capitalized_cmd: $installed_version is installed. $required_version or later is required."
else
echo -e "$CROSSMARK $capitalized_cmd: $installed_version is installed. $required_version or later is required."
fi
;;
"==")
if [ "$installed_version" == "$required_version" ]; then
echo -e "$CHECKMARK $capitalized_cmd: $installed_version is installed. $required_version or later is required."
else
echo -e "$CROSSMARK $capitalized_cmd: $installed_version is installed. $required_version or later is required."
fi
;;
*)
echo -e "$CROSSMARK Unknown operator: $operator"
;;
esac
else
echo -e "$CROSSMARK $capitalized_cmd is not installed. $required_version or later required."
fi
}
# This function checks if the required dependencies are installed.
check_dependencies() {
for cmd in packer ansible terraform git gomplate; do
check_command $cmd
done
printf "\nPress \033[32mEnter\033[0m to continue."
read -r input
if [[ -z "$input" ]]; then
return
else
printf "\nPress \033[32mEnter\033[0m to continue."
fi
}
show_command=0
os=""
dist=""
version=""
edition=""
auto_continue=false
# Script options.
while (("$#")); do
case "$1" in
--json | -j | -J)
json_path="$2"
run_check_jq=true
shift 2
;;
--deps | -d | -D)
check_dependencies
shift
;;
--os)
os="$2"
shift 2
;;
--dist)
dist="$2"
shift 2
;;
--edition)
edition="$2"
shift 2
;;
--version)
version="$2"
shift 2
;;
--auto-continue)
auto_continue=true
shift
;;
--show | -s | -S)
show_command=1
shift
;;
--debug | -b | -B)
debug=1
debug_option="-debug"
shift
;;
--help | -h | -H)
run_show_help=true
show_help
shift
;;
*)
config_path=$(realpath "$1")
shift
;;
esac
done
# After the loop, check if show_help needs to be run
if $run_show_help; then
show_help
fi
if $run_check_dependencies; then
check_dependencies
fi
# Set the default values for the variables.
os_names=$(jq -r '.os[] | .name' "$json_path")
os_array=($os_names)
# Get the project information from the JSON file.
get_project_info() {
local field=$1
jq -r ".project.${field}" "$json_path"
}
# Get the build information from the JSON file.
get_build_info() {
local field=$1
jq -r ".build.${field}" "$json_path"
}
# Get the settings from the JSON file.
get_settings() {
local field=$1
jq -r ".settings.${field}" "$json_path"
}
validate_windows_username() {
build_username=$(grep 'build_username' "$1" | awk -F '"' '{print $2}')
if [[ ! ${build_username} =~ ^[a-z_]([a-z0-9_-]{0,31}|[a-z0-9_-]{0,30}'\$')$ ]]; then
echo -e "\n\033[31mBuild username \033[33m$build_username\033[31m is invalid for Linux OS. Please check the build.pkrvars.hcl file."
echo -e "\nUsername validation rules:"
echo -e "\n1. It should start (^) with only a lowercase letter or an underscore ([a-z_]). This occupies exactly 1 character."
echo -e "\n2. Then it should be one of either (( ... )):"
echo -e "\n a. From 0 to 31 characters ({0,31}) of letters, numbers, underscores, and/or hyphens ([a-z0-9_-]),"
echo -e "\n OR (|)"
echo -e "\n b. From 0 to 30 characters of the above plus a US dollar sign symbol (\$) at the end,"
echo -e "\n3. No more characters past this pattern ($).\033[0m"
exit 1
fi
}
validate_linux_username() {
build_username=$(grep 'build_username' "$1" | awk -F '"' '{print $2}')
if [[ ! ${build_username} =~ ^[a-z_]([a-z0-9_-]{0,31}|[a-z0-9_-]{0,30}'\$')$ ]]; then
echo -e "\n\033[31mBuild username \033[33m$build_username\033[31m is invalid for Linux OS. Please check the build.pkrvars.hcl file."
echo -e "\nUsername validation rules:"
echo -e "\n1. It should start (^) with only a lowercase letter or an underscore ([a-z_]). This occupies exactly 1 character."
echo -e "\n2. Then it should be one of either (( ... )):"
echo -e "\n a. From 0 to 31 characters ({0,31}) of letters, numbers, underscores, and/or hyphens ([a-z0-9_-]),"
echo -e "\n OR (|)"
echo -e "\n b. From 0 to 30 characters of the above plus a US dollar sign symbol (\$) at the end,"
echo -e "\n3. No more characters past this pattern ($).\033[0m"
exit 1
fi
}
# Get the settings from the JSON file.
logging_enabled=$(get_settings build_logging_enabled)
logging_path=$(get_settings build_logging_path)
logfile_filename=$(get_settings build_logging_filename)
# This function prompts the user to go back or quit.
prompt_user() {
if [ "$auto_continue" = true ]; then
return
fi
printf "Enter \033[32mb\033[0m to go back, or \033[31mq\033[0m to quit.\n\n"
}
# This function prints a message to the console based on the message type.
print_message() {
local type=$1
local message=$2
case $type in
error)
printf "\033[31m%s\033[0m$message"
;;
info)
printf "\033[37m%s\033[0m$message"
;;
warn)
printf "\033[33m%s\033[0m$message"
;;
debug)
printf "\033[34m%s\033[0m$message"
;;
*)
printf "%s" "$message"
;;
esac
if $logging_enabled; then
# Remove color formatting from the log message
local no_color_message=$(echo -e "$message" | sed -r "s/\x1b\[([0-9]{1,2}(;[0-9]{1,2})?)?[mGK]//g")]
log_message "$type" "$no_color_message"
fi
}
log_message() {
local type=$1
local message=$2
if $logging_enabled; then
printf "$(date '+%Y-%m-%d %H:%M:%S') [%s]: %s\n" "$(echo "$type" | tr '[:lower:]' '[:upper:]')" "$message" >>"$log_file"
fi
}
print_title() {
project_name=$(jq -r '.project.name' "$json_path")
project_version=$(jq -r '.project.version' "$json_path")
line_width=80
title="${project_name} ${project_version}"
subtitle="B U I L D"
padding_title=$((($line_width - ${#title}) / 2))
padding_subtitle=$((($line_width - ${#subtitle}) / 2))
# Check if the current directory is a git repository
if git rev-parse --is-inside-work-tree >/dev/null 2>&1; then
# Get the current branch name
branch_name=$(git rev-parse --abbrev-ref HEAD)
title="${title} (Branch: ${branch_name})"
padding_title=$((($line_width - ${#title}) / 2))
# Check if the branch name contains a /
if [[ "$branch_name" == *"/"* ]]; then
branch_contains_slash=true
else
branch_contains_slash=false
fi
fi
printf "\033[34m%*s%s\033[0m\n" $padding_title '' "$title"
printf "\033[32m%*s%s\033[0m\n" $padding_subtitle '' "$subtitle"
}
# This function selects the guest operating system family.
# Only `Linux` and `Windows` are supported presently in the JSON file.
select_os() {
if [[ -n "$os" ]]; then
# Check if the OS is supported.
if [[ ! " ${os_array[@]} " =~ " $os " ]]; then
printf "\033[0;31m✘ Error:\033[0m Unsupported OS: \033[0;33m$os\033[0m.\n"
printf "\033[0;34mℹ Supported OS options are:\033[0m\n"
for os_item in "${os_array[@]}"; do
printf "\033[0;34m- %s\033[0m\n" "$os_item"
done
exit 1
fi
echo -e "\033[0;32m✔ Selected OS:\033[0m $os"
select_distribution
return
fi
clear
print_title
printf "\nSelect a guest operating system:\n\n"
for i in "${!os_array[@]}"; do
printf "$((i + 1)): ${os_array[$i]}\n"
done
printf "\nEnter \033[31mq\033[0m to quit or \033[34mi\033[0m for info.\n\n"
while true; do
read -r -p "Select a guest operating system: " os_input
if [[ $os_input == [qQ] ]]; then
exit 0
elif [[ $os_input == [iI] ]]; then
info
elif ((os_input >= 1 && os_input <= ${#os_array[@]})); then
os=${os_array[$((os_input - 1))]}
select_distribution
break
else
printf "\n"
print_message warn "\033[33mInvalid Selection:\033[0m Enter a number between 1 and ${#os_array[@]}."
printf "\n\n"
fi
done
}
select_distribution() {
case "$os" in
"Linux")
dist_descriptions=$(jq -r --arg os "$os" '.os[] | select(.name == $os) | .distributions[] | .description' "$json_path")
;;
"Windows")
dist_descriptions=$(jq -r --arg os "$os" '.os[] | select(.name == $os) | .types[] | .description' "$json_path")
;;
*)
print_message error "Unsupported guest operating system. Exiting..."
;;
esac
# Check if the distribution descriptions are empty.
if [ -z "$dist_descriptions" ]; then
printf "\nNo distributions found for $os.\n"
select_os
return
fi
# Convert the distribution descriptions to an array.
IFS=$'\n' read -rd '' -a dist_array <<<"$dist_descriptions"
# Sort the array.
IFS=$'\n' dist_array=($(sort <<<"${dist_array[*]}"))
unset IFS
if [[ -n "$dist" ]]; then
# Check if the distribution is supported.
if [[ ! " ${dist_array[@]} " =~ " $dist " ]]; then
printf "\033[0;31m✘ Error:\033[0m Unsupported distribution: \033[0;33m$dist\033[0m.\n"
printf "\033[0;34mℹ Supported distributions for \033[0;36m$os\033[0;34m are:\033[0m\n"
for dist_item in "${dist_array[@]}"; do
printf "\033[0;34m- %s\033[0m\n" "$dist_item"
done
exit 1
fi
echo -e "\033[0;32m✔ Selected distribution:\033[0m $dist"
select_version
return
fi
print_title
# Print the submenu.
clear
print_title
printf "\nSelect a %s:\n\n" "$([[ "$os" == "Windows" ]] && echo "$os type" || echo "$os distribution")"
for i in "${!dist_array[@]}"; do
printf "%d: %s\n" "$((i + 1))" "${dist_array[$i]}"
done
printf "\n"
prompt_user
while true; do
read -r -p "Enter a number of the $([[ "$os" == "Windows" ]] && echo "$os type" || echo "$os distribution"): " dist_input
if [[ $dist_input == [qQ] ]]; then
exit 0
elif [[ $dist_input == [bB] ]]; then
select_os
break
elif ((dist_input >= 1 && dist_input <= ${#dist_array[@]})); then
dist=${dist_array[$((dist_input - 1))]}
select_version
break
else
printf "\n"
print_message warn "\033[33mInvalid Selection:\033[0m Enter a number between 1 and ${#dist_array[@]}."
printf "\n\n"
fi
done
}
# This function selects the version based on the guest operating system's distribution or type.
select_version() {
if [[ "$dist" == *"Windows"* ]]; then
# Parse the JSON file to get the versions for the selected distribution Windows
version_descriptions=$(jq -r --arg os "$os" --arg dist "$dist" '.os[] | select(.name == $os) | .types[] | select(.description == $dist) | .versions | to_entries[] | select(.value[] | .enabled == "true") | .key' "$json_path")
else
version_descriptions=$(jq -r --arg os "$os" --arg dist "$dist" '.os[] | select(.name == $os) | .distributions[] | select(.description == $dist) | .versions | to_entries[] | select(.value[] | .enabled == "true") | .key' "$json_path")
fi
# Convert the version descriptions to an array and sort it in descending order.
IFS=$'\n' read -rd '' -a version_array <<<"$(echo "$version_descriptions" | sort -r)"
if [[ -n "$version" ]]; then
# Check if the version is supported.
if [[ ! " ${version_array[@]} " =~ " $version " ]]; then
printf "\033[0;31m✘ Error:\033[0m Unsupported version: \033[0;33m$version\033[0m.\n"
printf "\033[0;34mℹ Supported versions for \033[0;36m$dist\033[0;34m are:\033[0m\n"
for version_item in "${version_array[@]}"; do
printf "\033[0;34m- %s\033[0m\n" "$version_item"
done
exit 1
fi
echo -e "\033[0;32m✔ Selected version:\033[0m $version"
if [[ "$dist" == *"Windows"* ]]; then
select_edition
else
select_build
fi
return
fi
# Print the submenu.
clear
print_title
printf "\nSelect a version:\n\n"
for i in "${!version_array[@]}"; do
printf "$((i + 1)): $dist ${version_array[$i]}\n"
done
printf "\n"
prompt_user
while true; do
read -r -p "Select a version: " version_input
if [[ "$version_input" == [qQ] ]]; then
exit 0
elif [[ $version_input == [bB] ]]; then
select_distribution
break
elif [[ $version_input =~ ^[0-9]+$ ]] && ((version_input >= 1 && version_input <= ${#version_array[@]})); then
version=${version_array[$((version_input - 1))]}
if [[ "$dist" == *"Windows"* ]]; then
select_edition
else
select_build
fi
break
else
printf "\n"
print_message warn "\033[33mInvalid Selection:\033[0m Enter a number between 1 and ${#version_array[@]}.\n"
printf "\n"
fi
done
}
select_edition() {
edition_descriptions=$(jq -r --arg os "$os" --arg dist "$dist" --arg version "$version" '.os[] | select(.name == $os) | .types[] | select(.description == $dist) | .versions[$version][] | .editions[] | select(.enabled == "true") | .edition' "$json_path")
IFS=$'\n' read -rd '' -a edition_array <<<"$(echo "$edition_descriptions" | sort -r)"
if [[ -n "$edition" ]]; then
# Check if the edition is supported.
if [[ ! " ${edition_array[@]} " =~ " $edition " ]]; then
printf "\033[0;31m✘ Error:\033[0m Unsupported edition: \033[0;33m$edition\033[0m.\n"
printf "\033[0;34mℹ Supported editions for \033[0;36m$dist\033[0;34m version \033[0;36m$version\033[0;34m are:\033[0m\n"
for edition_item in "${edition_array[@]}"; do
printf "\033[0;34m- %s\033[0m\n" "$edition_item"
done
exit 1
fi
echo -e "\033[0;32m✔ Selected edition:\033[0m $edition"
select_build
return
fi
# Print the submenu.
clear
printf "\nSelect an edition:\n\n"
for i in "${!edition_array[@]}"; do
printf "$((i + 1)): $dist ${edition_array[$i]}\n"
done
printf "\n"
prompt_user
# Select an edition.
while true; do
read -r -p "Select an edition: " edition_input
if [[ "$edition_input" == [qQ] ]]; then
exit 0
elif [[ $edition_input == [bB] ]]; then
select_version
break
elif [[ $edition_input =~ ^[0-9]+$ ]] && ((edition_input >= 1 && edition_input <= ${#edition_array[@]})); then
edition=${edition_array[$((edition_input - 1))]}
select_build
break
else
printf "\n"
print_message warn "\033[33mInvalid Selection:\033[0m Enter a number between 1 and ${#edition_array[@]}.\n"
printf "\n"
fi
done
}
select_build() {
if [[ "$dist" == *"Red Hat"* ]]; then
dist_name="rhel"
elif [[ "$dist" == *"SUSE"* ]]; then
dist_name="sles"
elif [[ "$dist" == *"Photon"* ]]; then
dist_name="photon"
elif [[ "$dist" == *"Windows Server"* ]]; then
dist_name="server"
elif [[ "$dist" == *"Windows Desktop"* ]]; then
dist_name="desktop"
else
dist_name_split="${dist%% *}"
#dist_name="${dist_name_split,,}"
dist_name=$(echo "$dist_name_split" | tr '[:upper:]' '[:lower:]')
fi
if [[ "$dist" == *"Ubuntu"* ]]; then
version=$version
# Check if the suffix "-LTS" is already present before adding it.
if [[ "$version" != *"-LTS" ]]; then
version=$(echo "$version" | sed 's/\./-/g')-LTS
else
version=$(echo "$version" | sed 's/\./-/g')
fi
INPUT_PATH="$script_path"/builds/$(echo "$os" | tr '[:upper:]' '[:lower:]')/$(echo "$dist_name" | tr '[:upper:]' '[:lower:]')/$(echo "$version" | tr '[:upper:]' '[:lower:]')/
else
version=$(echo "$version" | tr '[:upper:]' '[:lower:]')
INPUT_PATH="$script_path"/builds/$(echo "$os" | tr '[:upper:]' '[:lower:]')/$(echo "$dist_name" | tr '[:upper:]' '[:lower:]')/$version/
fi
if [ ! -d "$INPUT_PATH" ]; then
printf "\n\033[0;31m✘ Error:\033[0m The build directory does not exist: \033[0;34m$INPUT_PATH\033[0m.\n"
if [ "$auto_continue" = true ]; then
printf "\n\033[0;36m➜ Auto-continue is enabled. Skipping user prompt and retrying...\033[0m\n"
select_version # Retry automatically.
else
while true; do
printf "\nWould you like to go (\033[0;33mb\033[0m)ack or (\033[0;31mq\033[0m)uit?\n"
read -r action
case $action in
[bB]*)
select_version # Go back to version selection.
break
;;
[qQ]*)
exit 0
;;
esac
done
fi
fi
BUILD_PATH=${INPUT_PATH#"${script_path}/builds/"}
BUILD_VARS="$(echo "${BUILD_PATH%/}" | tr -s '/' | tr '/' '-').pkrvars.hcl"
echo -e "\nBuild a $dist $version virtual machine image for VMware vSphere?"
# Check if the branch_contains_slash variable is true
if $branch_contains_slash; then
printf "\n\033[33mWarning:\033[0m The branch name contains a slash ('\033[33m/\033[0m') which may cause issues with the build.\n\n"
fi
while true; do
if [ "$auto_continue" = true ]; then
# If auto-continue is enabled, proceed without prompt.
printf "\nAuto-continue is enabled. Skipping user prompt...\n"
break
fi
prompt=$(printf '\nWould you like to (\e[32mc\e[0m)ontinue, go (\e[33mb\e[0m)ack, or (\e[31mq\e[0m)uit? ')
read -r -p "$prompt" action
log_message "info" "User selected: $action"
case $action in
[Cc]*)
# Continue the Build.
break
;;
[Qq]*)
# Quit the script.
exit 0
;;
[Bb]*)
# Go back to the menu.
select_version
break
;;
esac
done
printf "\nInitializing HashiCorp Packer and the required plugins...\n"
packer init "$INPUT_PATH"
# Check if the selected guest operating system is Linux or Windows.
if [[ "$os" == *"Linux"* ]]; then
vsphere_vars=$(jq -r --arg os "$os" --arg dist "$dist" --arg version "$version" '.os[] | select(.name == $os) | .distributions[] | select(.description == $dist) | .versions | to_entries[] | .value[] | select(.version == $version) | .build_files[0].vsphere' "$json_path")
elif [[ "$dist" == *"Windows"* ]]; then
vsphere_vars=$(jq -r --arg os "$os" --arg dist "$dist" --arg version "$version" --arg edition "$edition" '.os[] | select(.name == $os) | .types[] | select(.description == $dist) | .versions[$version][] | .editions[] | select(.edition == $edition) | .build_files[0].vsphere' "$json_path")
fi
if [[ "$os" == *"Linux"* ]]; then
build_vars=$(jq -r --arg os "$os" --arg dist "$dist" --arg version "$version" '.os[] | select(.name == $os) | .distributions[] | select(.description == $dist) | .versions | to_entries[] | .value[] | select(.version == $version) | .build_files[0].build' "$json_path")
elif [[ "$dist" == *"Windows"* ]]; then
build_vars=$(jq -r --arg os "$os" --arg dist "$dist" --arg version "$version" --arg edition "$edition" '.os[] | select(.name == $os) | .types[] | select(.description == $dist) | .versions[$version][] | .editions[] | select(.edition == $edition) | .build_files[0].build' "$json_path")
fi
if [[ "$os" == *"Linux"* ]]; then
ansible_vars=$(jq -r --arg os "$os" --arg dist "$dist" --arg version "$version" '.os[] | select(.name == $os) | .distributions[] | select(.description == $dist) | .versions | to_entries[] | .value[] | select(.version == $version) | .build_files[0].ansible' "$json_path")
elif [[ "$dist" == *"Windows"* ]]; then
ansible_vars=$(jq -r --arg os "$os" --arg dist "$dist" --arg version "$version" --arg edition "$edition" '.os[] | select(.name == $os) | .types[] | select(.description == $dist) | .versions[$version][] | .editions[] | select(.edition == $edition) | .build_files[0].ansible' "$json_path")
fi
if [[ "$os" == *"Linux"* ]]; then
proxy_vars=$(jq -r --arg os "$os" --arg dist "$dist" --arg version "$version" '.os[] | select(.name == $os) | .distributions[] | select(.description == $dist) | .versions | to_entries[] | .value[] | select(.version == $version) | .build_files[0].proxy' "$json_path")
elif [[ "$dist" == *"Windows"* ]]; then
proxy_vars=$(jq -r --arg os "$os" --arg dist "$dist" --arg version "$version" --arg edition "$edition" '.os[] | select(.name == $os) | .types[] | select(.description == $dist) | .versions[$version][] | .editions[] | select(.edition == $edition) | .build_files[0].proxy' "$json_path")
fi
if [[ "$os" == *"Linux"* ]]; then
common_vars=$(jq -r --arg os "$os" --arg dist "$dist" --arg version "$version" '.os[] | select(.name == $os) | .distributions[] | select(.description == $dist) | .versions | to_entries[] | .value[] | select(.version == $version) | .build_files[0].common' "$json_path")
elif [[ "$dist" == *"Windows"* ]]; then
common_vars=$(jq -r --arg os "$os" --arg dist "$dist" --arg version "$version" --arg edition "$edition" '.os[] | select(.name == $os) | .types[] | select(.description == $dist) | .versions[$version][] | .editions[] | select(.edition == $edition) | .build_files[0].common' "$json_path")
fi
if [[ "$os" == *"Linux"* ]]; then
network_vars=$(jq -r --arg os "$os" --arg dist "$dist" --arg version "$version" '.os[] | select(.name == $os) | .distributions[] | select(.description == $dist) | .versions | to_entries[] | .value[] | select(.version == $version) | .build_files[0].network' "$json_path")
fi
if [[ "$os" == *"Linux"* ]]; then
storage_vars=$(jq -r --arg os "$os" --arg dist "$dist" --arg version "$version" '.os[] | select(.name == $os) | .distributions[] | select(.description == $dist) | .versions | to_entries[] | .value[] | select(.version == $version) | .build_files[0].storage' "$json_path")
fi
if [[ "$dist" == *"Red Hat"* ]]; then
rshm_vars=$(jq -r --arg os "$os" --arg dist "$dist" --arg version "$version" '.os[] | select(.name == $os) | .distributions[] | select(.description == $dist) | .versions | to_entries[] | .value[] | select(.version == $version) | .build_files[0].rshm' "$json_path")
fi
if [[ "$dist" == *"SUSE"* ]]; then
scc_vars=$(jq -r --arg os "$os" --arg dist "$dist" --arg version "$version" '.os[] | select(.name == $os) | .distributions[] | select(.description == $dist) | .versions | to_entries[] | .value[] | select(.version == $version) | .build_files[0].scc' "$json_path")
fi
case "$dist" in
"Debian" | "Ubuntu Server" | "AlmaLinux OS" | "Rocky Linux" | "Oracle Linux" | "CentOS" | "Fedora Server")
var_files=("vsphere_vars" "build_vars" "ansible_vars" "proxy_vars" "common_vars" "network_vars" "storage_vars" "BUILD_VARS")
validate_linux_username "$config_path/build.pkrvars.hcl"
printf "Starting the build of %s %s...\n\n" "$dist" "$version"
command="packer build -force -on-error=ask $debug_option"
for var_file in "${var_files[@]}"; do
command+=" -var-file=\"$config_path/${!var_file}\""
done
command+=" \"$INPUT_PATH\""
if [ $show_command -eq 1 ]; then
printf "\n"
printf "\n\033[32mThe following command is ran for this build:\033[0m\n"
printf "\n\e[34m%s\e[0m\n" "$command"
fi
eval "$command"
;;
"Red Hat Enterprise Linux")
var_files=("vsphere_vars" "build_vars" "ansible_vars" "proxy_vars" "common_vars" "network_vars" "storage_vars" "rshm_vars" "BUILD_VARS")
validate_linux_username "$config_path/build.pkrvars.hcl"
printf "Starting the build of %s %s...\n\n" "$dist" "$version"
command="packer build -force -on-error=ask $debug_option"
for var_file in "${var_files[@]}"; do
command+=" -var-file=\"$config_path/${!var_file}\""
done
command+=" \"$INPUT_PATH\""
if [ $show_command -eq 1 ]; then
printf "\n"
printf "\n\033[32mThe following command is ran for this build:\033[0m\n"
printf "\n\e[34m%s\e[0m\n" "$command"
fi
eval "$command"
;;
"VMware Photon OS")
var_files=("vsphere_vars" "build_vars" "ansible_vars" "proxy_vars" "common_vars" "network_vars" "BUILD_VARS")
validate_linux_username "$config_path/build.pkrvars.hcl"
printf "Starting the build of %s %s...\n\n" "$dist" "$version"
command="packer build -force -on-error=ask $debug_option"
for var_file in "${var_files[@]}"; do
command+=" -var-file=\"$config_path/${!var_file}\""
done
command+=" \"$INPUT_PATH\""
if [ $show_command -eq 1 ]; then
printf "\n"
printf "\n\033[32mThe following command is ran for this build:\033[0m\n"
printf "\n\e[34m%s\e[0m\n" "$command"
fi
eval "$command"
;;
"SUSE Linux Enterprise Server")
var_files=("vsphere_vars" "build_vars" "ansible_vars" "network_vars" "proxy_vars" "common_vars" "scc_vars" "BUILD_VARS")
validate_linux_username "$config_path/build.pkrvars.hcl"
printf "Starting the build of %s %s...\n\n" "$dist" "$version"
command="packer build -force -on-error=ask $debug_option"
for var_file in "${var_files[@]}"; do
command+=" -var-file=\"$config_path/${!var_file}\""
done
command+=" \"$INPUT_PATH\""
if [ $show_command -eq 1 ]; then
printf "\n"
printf "\n\033[32mThe following command is ran for this build:\033[0m\n"
printf "\n\e[34m%s\e[0m\n" "$command"
fi
eval "$command"
;;
"Windows Server")
case "$edition" in
"Standard")
var_files=("vsphere_vars" "build_vars" "ansible_vars" "proxy_vars" "common_vars" "BUILD_VARS")
build_username=$(grep 'build_username' "$config_path/build.pkrvars.hcl" | awk -F '"' '{print $2}')
validate_windows_username "$config_path/build.pkrvars.hcl"
printf "Starting the build of %s %s...\n\n" "$dist" "$version"
command="packer build -force -on-error=ask $debug_option"
command+=" --only=vsphere-iso.windows-server-standard-dexp,vsphere-iso.windows-server-standard-core"
for var_file in "${var_files[@]}"; do
command+=" -var-file=\"$config_path/${!var_file}\""
done
command+=" \"$INPUT_PATH\""
if [ $show_command -eq 1 ]; then
printf "\n"
printf "\n\033[32mThe following command is ran for this build:\033[0m\n"
printf "\n\e[34m%s\e[0m\n" "$command"
fi
eval "$command"
;;
"Datacenter")
var_files=("vsphere_vars" "build_vars" "ansible_vars" "proxy_vars" "common_vars" "BUILD_VARS")
validate_windows_username "$config_path/build.pkrvars.hcl"
printf "Starting the build of %s %s...\n\n" "$dist" "$version"
command="packer build -force -on-error=ask $debug_option"
command+=" --only vsphere-iso.windows-server-datacenter-dexp,vsphere-iso.windows-server-datacenter-core"
for var_file in "${var_files[@]}"; do
command+=" -var-file=\"$config_path/${!var_file}\""
done
command+=" \"$INPUT_PATH\""
if [ $show_command -eq 1 ]; then
printf "\n"
printf "\n\033[32mThe following command is ran for this build:\033[0m\n"
printf "\n\e[34m%s\e[0m\n" "$command"
fi
eval "$command"
;;
*)
print_message error "Unsupported $dist edition: $edition"
;;
esac
;;
"Windows Desktop")
case "$edition" in
"Enterprise")
var_files=("vsphere_vars" "build_vars" "ansible_vars" "proxy_vars" "common_vars" "BUILD_VARS")
validate_windows_username "$config_path/build.pkrvars.hcl"
printf "Starting the build of %s %s...\n\n" "$dist" "$version"
command="packer build -force -on-error=ask $debug_option"
command+=" --only vsphere-iso.windows-desktop-ent"
for var_file in "${var_files[@]}"; do
command+=" -var-file=\"$config_path/${!var_file}\""
done
command+=" \"$INPUT_PATH\""
if [ $show_command -eq 1 ]; then
printf "\n"
printf "\n\033[32mThe following command is ran for this build:\033[0m\n"
printf "\n\e[34m%s\e[0m\n" "$command"
fi
eval "$command"
;;
"Professional")
var_files=("vsphere_vars" "build_vars" "ansible_vars" "proxy_vars" "common_vars" "BUILD_VARS")
validate_windows_username "$config_path/build.pkrvars.hcl"
printf "Starting the build of %s %s...\n\n" "$dist" "$version"
command="packer build -force -on-error=ask $debug_option"
command+=" --only vsphere-iso.windows-desktop-pro"
for var_file in "${var_files[@]}"; do
command+=" -var-file=\"$config_path/${!var_file}\""
done
command+=" \"$INPUT_PATH\""
if [ $show_command -eq 1 ]; then
printf "\n"
printf "\n\033[32mThe following command is ran for this build:\033[0m\n"
printf "\n\e[34m%s\e[0m\n" "$command"
fi
eval "$command"
;;
*)
print_message error "Unsupported edition: $dist $edition"
;;
esac
;;
*)
print_message error "Unsupported distribution: $dist"
;;
esac
}
# Check if logging is enabled.
if $logging_enabled; then
# If logging_path is empty, use the current directory
if [[ -z "$logging_path" ]]; then
logging_path=$(pwd)
fi
log_file="$logging_path/$logfile_filename"
# Check if the log file exists. If not, create it.
if [[ ! -f "$log_file" ]]; then
touch "$log_file"
log_message "info" "Log file created: $log_file."
fi
fi
# Start the script with the selecting the guest operating system.
select_os
# Prompt the user to continue or quit.
while true; do
action=""
printf "Would you like to \033[0;32mc\033[0m)ontinue, or \033[0;31mq\033[0m)uit? %s" "$action"
read -r action
log_message "info" "User selected: $action"
case $action in
[cC]*)
select_os
;;
[qQ]*) exit ;;
esac
done