Skip to content

Commit

Permalink
Make wslink requires to have apache userdir module enabled
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://scm.fusionforge.org/srv/svn/fusionforge/trunk@11080 9d84d37e-dcb1-4aad-b103-6f3d92f53bf6
  • Loading branch information
cbayle committed Oct 20, 2010
1 parent e046886 commit f3c04f3
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ src/plugins/mediawiki/mediawiki-skin/FusionForge.php:
%: src/plugins/mediawiki/mediawiki-skin/FusionForge.php
$(MAKE) -f Makefile.$(DIST) $@

wslink:
@[ -d ~/public_html ] || mkdir ~/public_html
@[ -L ~/public_html/ws ] || ln -s $(CURDIR) ~/public_html/ws
wslink: /etc/apache2/mods-enabled/userdir.load
[ -d ~/public_html ] || mkdir ~/public_html
[ -L ~/public_html/ws ] || ln -s $(CURDIR) ~/public_html/ws

/etc/apache2/mods-enabled/userdir.load:
sudo a2enmod userdir

0 comments on commit f3c04f3

Please sign in to comment.