Merge pull request #61 from jvalleroy/master

Add link to jwchat, and install owncloud without recommends.
This commit is contained in:
Nick Daly 2014-03-23 17:33:21 +00:00
commit f79463ec56
2 changed files with 2 additions and 1 deletions

View File

@ -39,7 +39,7 @@ done
if [ "$owncloud_enable" != "$owncloud_enable_cur" ] ; then
if $owncloud_enable ; then
DEBIAN_FRONTEND=noninteractive apt-get install -y owncloud 2>&1 | logger -t owncloud-setup
DEBIAN_FRONTEND=noninteractive apt-get --no-install-recommends install -y owncloud 2>&1 | logger -t owncloud-setup
a2enconf owncloud 2>&1 | logger -t owncloud-setup
else
a2disconf owncloud 2>&1 | logger -t owncloud-setup

View File

@ -11,6 +11,7 @@ class Apps(PagePlugin):
PagePlugin.__init__(self, *args, **kwargs)
self.register_page("apps")
self.menu = cfg.main_menu.add_item("Apps", "icon-download-alt", "/apps", 80)
self.menu.add_item("Chat", "icon-comment", "http://freedombox.local", 30)
self.menu.add_item("Photo Gallery", "icon-picture", "/apps/photos", 35)
@cherrypy.expose