add wildcard parameter to create_web_vhost_config task

This commit is contained in:
Jan Dittberner 2015-01-26 21:36:24 +01:00
parent ba85ad8ad9
commit 7fbeb668da

View file

@ -8,13 +8,15 @@ from celery import shared_task
@shared_task @shared_task
def create_web_vhost_config(username, sitename): def create_web_vhost_config(username, sitename, wildcard):
""" """
This task creates a virtual host configuration on an nginx web This task creates a virtual host configuration on an nginx web
server. server.
:param str username: user who owns the site :param str username: user who owns the site
:param str sitename: site name :param str sitename: site name
:param boolean wildcard: designates whether this is website has a wildcard
subdomain
:return: :py:const:`True` if the creation finished successfully :return: :py:const:`True` if the creation finished successfully
:rtype: boolean :rtype: boolean