Fix Makefile

This commit is contained in:
LinuxSquare 2025-04-26 09:07:51 +02:00
parent 0996214159
commit 3eae48fcfb
2 changed files with 4 additions and 3 deletions

View file

@ -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:

View file

@ -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"