mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
10 lines
253 B
Bash
10 lines
253 B
Bash
#!/bin/sh
|
|
|
|
# Usage: module-list-enabled python_root
|
|
# This will change when we switch to using aptitude.
|
|
|
|
# TODO: Replace this with something like 'aptitude search -F %p | grep "plinth-"'
|
|
if [ -e "$1"/modules/owncloud.py ] ; then
|
|
echo "owncloud"
|
|
fi
|