2023-07-02 20:54:58 +02:00
|
|
|
function check {
|
|
|
|
if grep "desktop/none" /tmp/stage-2-choices >/dev/null 2>&1; then
|
|
|
|
return 1
|
|
|
|
else
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
DESCRIPTION="Install Firefox - Extended Support Release (ESR)"
|
|
|
|
|
|
|
|
PACKAGES="firefox-esr"
|
|
|
|
|
2023-07-03 12:40:12 +02:00
|
|
|
function post_install {
|
2023-07-02 20:54:58 +02:00
|
|
|
echo "web/firefox-esr" >> /tmp/stage-2-choices
|
|
|
|
}
|