diff options
| author | Lester Caine <lester@lsces.co.uk> | 2026-05-18 09:35:32 +0100 |
|---|---|---|
| committer | Lester Caine <lester@lsces.co.uk> | 2026-05-18 09:35:32 +0100 |
| commit | d16c0b9fda4089b317ff0d4b83976f349aa3eb0d (patch) | |
| tree | 1f84d882956f8952fd6d95be849f0d1447856ae9 /templates | |
| parent | dca364780674d417435782855968c46f05eab84c (diff) | |
| download | install-d16c0b9fda4089b317ff0d4b83976f349aa3eb0d.tar.gz install-d16c0b9fda4089b317ff0d4b83976f349aa3eb0d.tar.bz2 install-d16c0b9fda4089b317ff0d4b83976f349aa3eb0d.zip | |
Clean up install process post first install
Can now install new packages
Diffstat (limited to 'templates')
| -rwxr-xr-x | templates/install_packages.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/install_packages.tpl b/templates/install_packages.tpl index a1e61d9..4f600ce 100755 --- a/templates/install_packages.tpl +++ b/templates/install_packages.tpl @@ -21,9 +21,9 @@ <input type="hidden" name="step" value="{$next_step}" /> <input type="hidden" name="method" value="install" /> - {* include required packages during first install *} + {* include required packages during first install only *} {foreach from=$schema key=package item=item} - {if $item.required|default:false and !$item.installed} + {if $first_install and $item.required|default:false and !$item.installed} <input type="hidden" name="packages[]" value="{$package}" /> {/if} {/foreach} |
