Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Provide better output on toltecctl uninstall #692

Open
wants to merge 36 commits into
base: testing
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
f0c8013
Provide better output on toltecctl uninstall
Eeems May 10, 2023
71c5462
Update version
Eeems May 10, 2023
46ab86b
Remove extra whitespace left by the github editor
Eeems May 10, 2023
99fb2f6
Make variable local
Eeems May 10, 2023
c3dba52
No longer use a subshell
Eeems May 10, 2023
1649a09
Merge branch 'testing' into Eeems-patch-10
Eeems May 10, 2023
f10380a
Merge branch 'testing' into Eeems-patch-10
Eeems Aug 2, 2023
25372bd
Merge branch 'testing' into Eeems-patch-10
Eeems Aug 2, 2023
f45e08b
Merge branch 'testing' into Eeems-patch-10
Eeems Aug 8, 2023
03d090e
Merge branch 'testing' into Eeems-patch-10
Eeems Aug 15, 2023
90d6117
Merge branch 'testing' into Eeems-patch-10
Eeems Oct 3, 2023
ecee049
Merge branch 'testing' into Eeems-patch-10
Eeems Nov 27, 2023
325cd4d
Fix toltec-bootstrap version
Eeems Nov 27, 2023
8937f96
Merge branch 'testing' into Eeems-patch-10
Eeems Dec 6, 2023
038d359
Merge branch 'testing' into Eeems-patch-10
Eeems May 8, 2024
b7e1753
Merge branch 'testing' into Eeems-patch-10
Eeems May 31, 2024
44228c5
Merge branch 'testing' into Eeems-patch-10
Eeems May 31, 2024
0e024aa
Merge branch 'testing' into Eeems-patch-10
Eeems Jun 2, 2024
94af3c3
Add missing dependency to launcherctl
Eeems Jun 2, 2024
08c582d
Merge branch 'testing' into Eeems-patch-10
Eeems Jun 2, 2024
ea59852
Bump toltec-bootstrap version
Eeems Jun 2, 2024
fcedcd4
Force launcherctl to uninstall before xochitl
Eeems Jun 2, 2024
2645de9
Make uninstall way more fault tolerant, and report better errors
Eeems Jun 2, 2024
a11076d
Fix error line output
Eeems Jun 2, 2024
9c24c05
Better handle failed uninstalls
Eeems Jun 2, 2024
c96df00
Add extra log line
Eeems Jun 2, 2024
30663b7
Fix entware-rc depends
Eeems Jun 2, 2024
dcf6d73
fix final exit
Eeems Jun 2, 2024
52b100e
Merge branch 'testing' into Eeems-patch-10
Eeems Jun 3, 2024
96720a3
Merge branch 'testing' into Eeems-patch-10
Eeems Jun 6, 2024
8deff1c
Update toltecctl
Eeems Sep 7, 2024
7604217
Merge branch 'testing' into Eeems-patch-10
Eeems Sep 7, 2024
54d5dcb
Update toltecctl
Eeems Sep 7, 2024
3cd792e
Merge branch 'testing' into Eeems-patch-10
Eeems Sep 12, 2024
3e5c0a1
Merge branch 'testing' into Eeems-patch-10
Eeems Sep 18, 2024
118c9a1
Merge branch 'testing' into Eeems-patch-10
Eeems Oct 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package/toltec-bootstrap/toltecctl
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ reinstall-root() {
if [[ -v "on_root_packages[$pkgname]" ]]; then
reinstall_packages[$pkgname]=1
fi
done < <(gunzip -c $toltec_dest/var/opkg-lists/* | grep "^Package:" | awk '{print $2}')
done < <(gunzip -c "$toltec_dest"/var/opkg-lists/* | grep "^Package:" | awk '{print $2}')
Eeems marked this conversation as resolved.
Show resolved Hide resolved

# Workaround: Checking the size of an empty array when the nounset option
# is active may throw an error on some Bash versions, so we disable it
Expand Down
Loading