commit: caac4444f99bcef4161a416af8d1f678314a3e80
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 22 19:01:41 2016 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Fri Jan 22 19:01:41 2016 +0000
URL: https://gitweb.gentoo.org/proj/eselect-php.git/commit/?id=caac4444
Add a "modules" action to list all valid modules (requested in bug 491866).
Gentoo-Bug: 491866
src/php.eselect.in.in | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/src/php.eselect.in.in b/src/php.eselect.in.in
index db7a96f..2467ce3 100644
--- a/src/php.eselect.in.in
+++ b/src/php.eselect.in.in
@@ -619,3 +619,13 @@ do_cleanup() {
fi
done
}
+
+## modules action
+
+describe_modules() {
+ echo "List all valid modules, separated by spaces"
+}
+
+do_modules() {
+ echo "${MODULES}"
+}