Fix Makefile
This commit is contained in:
parent
0996214159
commit
3eae48fcfb
2 changed files with 4 additions and 3 deletions
3
Makefile
3
Makefile
|
@ -1,6 +1,5 @@
|
||||||
iso:
|
iso:
|
||||||
sed "s|%REL_VER%|$(grep -E 'release_version.' profiledef.sh | cut -d= -f2 | jq -r '.')|" template/root/install.sh > airootfs/root/install.sh
|
sed "s|%REL_VER%|$(shell grep -E 'release_version.' profiledef.sh | cut -d= -f2 | jq -r '.')|; s|%ALP_VER%|$(shell grep -E 'iso_version.' profiledef.sh | cut -d= -f2 | jq -r '.')|" template/root/install.sh > airootfs/root/install.sh
|
||||||
sed "s|%ALP_VER%|$(grep -E 'iso_version.' profiledef.sh | cut -d= -f2 | jq -r '.')|" template/root/install.sh > airootfs/root/install.sh
|
|
||||||
sudo mkalpineiso -o ${PWD}/out
|
sudo mkalpineiso -o ${PWD}/out
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
|
|
@ -154,7 +154,7 @@ function preChecks() {
|
||||||
function introDialogue() {
|
function introDialogue() {
|
||||||
local introtext="\n\n\n
|
local introtext="\n\n\n
|
||||||
Velkommen til
|
Velkommen til
|
||||||
_ _\n
|
_ _\n
|
||||||
| \ | | _____ _____ ___\n
|
| \ | | _____ _____ ___\n
|
||||||
| \| |/ _ \ \ / / _ \/ __|\n
|
| \| |/ _ \ \ / / _ \/ __|\n
|
||||||
| |\ | (_) \ V / (_) \__ \ \n
|
| |\ | (_) \ V / (_) \__ \ \n
|
||||||
|
@ -420,6 +420,8 @@ ungrouped:
|
||||||
tmpfs_size: 4G
|
tmpfs_size: 4G
|
||||||
installation_type: ${INSTALLATION_TYPE}
|
installation_type: ${INSTALLATION_TYPE}
|
||||||
mysql_root_password: $(randomPasswordGen 32)
|
mysql_root_password: $(randomPasswordGen 32)
|
||||||
|
release_version: 2412
|
||||||
|
alpine_version: v3.21
|
||||||
EOT
|
EOT
|
||||||
|
|
||||||
installationSubtaskTitle "Execute Ansible playbooks"
|
installationSubtaskTitle "Execute Ansible playbooks"
|
||||||
|
|
Loading…
Reference in a new issue