Compare commits

...

2 commits

Author SHA1 Message Date
Ohio2
2200e5bac6 APS update 2021-08-28 05:24:55 +02:00
Ohio2
c2d0c0a7a4 add list 2021-08-27 16:58:57 +02:00

7
aps
View file

@ -163,6 +163,12 @@ help(){
echo "install - Installs from local package information file and build file."
echo "upgrade - Upgrades from package repository."
echo "remove - Removes a package from /var/aps/installed and it's install files (payloadfiles)."
echo "list - Lists currently installed packages."
echo "help - Display this message."
echo "version - Display the version."
}
list(){
ls ${installed_pkg_database} | sed 's/^README.md//g'
}
main() {
if [ -f "${lock}" ]; then
@ -184,6 +190,7 @@ main() {
upgrade) upgrade "official" ;;
help) help ;;
version) version ;;
list) list ;;
*) die "[E] Invalid option ${1}, exiting..." ;;
esac
rm "${lock}"