]> git.ipfire.org Git - thirdparty/openwrt.git/commitdiff
package: drop apk cheatsheet from base-files
authorPaul Spooren <mail@aparcar.org>
Thu, 26 Feb 2026 21:02:41 +0000 (22:02 +0100)
committerPaul Spooren <mail@aparcar.org>
Wed, 4 Mar 2026 09:15:21 +0000 (10:15 +0100)
This has been up for a while, let's drop it.

Signed-off-by: Paul Spooren <mail@aparcar.org>
package/base-files/files/etc/profile.d/apk-cheatsheet.sh [deleted file]

diff --git a/package/base-files/files/etc/profile.d/apk-cheatsheet.sh b/package/base-files/files/etc/profile.d/apk-cheatsheet.sh
deleted file mode 100644 (file)
index 4193367..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-if [ -x /usr/bin/apk ] ; then
-cat << EOF
-
- OpenWrt recently switched to the "apk" package manager!
-
- OPKG Command           APK Equivalent      Description
- ------------------------------------------------------------------
- opkg install <pkg>     apk add <pkg>       Install a package
- opkg remove <pkg>      apk del <pkg>       Remove a package
- opkg upgrade           apk upgrade         Upgrade all packages
- opkg files <pkg>       apk info -L <pkg>   List package contents
- opkg list-installed    apk info            List installed packages
- opkg update            apk update          Update package lists
- opkg search <pkg>      apk search <pkg>    Search for packages
- ------------------------------------------------------------------
-
-For more information visit:
-https://openwrt.org/docs/guide-user/additional-software/opkg-to-apk-cheatsheet
-
-EOF
-fi