From 3e08a20f76c06638232d5fcaa6fcb175fd36059a Mon Sep 17 00:00:00 2001 From: LinuxSquare Date: Sun, 10 Mar 2024 12:40:20 +0100 Subject: [PATCH] install - fix additional states, add tmpfs.size pillar --- airootfs/root/install.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/airootfs/root/install.sh b/airootfs/root/install.sh index 043b253..858ef61 100644 --- a/airootfs/root/install.sh +++ b/airootfs/root/install.sh @@ -415,8 +415,8 @@ EOT include: SERVERSPECIFIC - for additional in ${$ADDITIONAL_STATES_ARR[@]}; do - echo -e " - $state" >> "${INSTALLATION_MOUNTPOINT}/${INSTALLATION_SALT_ROOT}/serverspecific.sls" + for additional in ${ADDITIONAL_STATES_ARR[@]}; do + echo -e " - $additional" >> "${INSTALLATION_MOUNTPOINT}/${INSTALLATION_SALT_ROOT}/serverspecific.sls" done installationSubtaskTitle "Populate Pillars" @@ -434,6 +434,7 @@ EOT cat >"${INSTALLATION_MOUNTPOINT}/${INSTALLATION_PILLAR_ROOT}/system/init.sls" << EOT system.disks.timestamp: ${START_TIMESTAMP} +system.disks.tmpfs.size: 4G EOT installationSubtaskTitle "Salt highstate"