From 7e009ec0d960cfc01399de11d82de244f2753dc4 Mon Sep 17 00:00:00 2001 From: Benjamin Sonntag Date: Thu, 7 May 2015 17:43:54 +0200 Subject: [PATCH] [enh] Import of SSL debian files --- Makefile | 3 +++ debian/control | 42 ++++++++++++++++++++++++++++++++++++++++++ debian/rules | 2 ++ 3 files changed, 47 insertions(+) diff --git a/Makefile b/Makefile index 9cfa2766..5871b584 100644 --- a/Makefile +++ b/Makefile @@ -93,3 +93,6 @@ install-squirrelmail: install-upnp: make -C upnp install DESTDIR=$(DESTDIR) +install-api: + make -C api install DESTDIR=$(DESTDIR) + diff --git a/debian/control b/debian/control index add60314..831861ea 100644 --- a/debian/control +++ b/debian/control @@ -307,3 +307,45 @@ Description-fr.UTF-8: Client UPnP pour AlternC situé derrière un routeur NAT. . Pour plus d'informations, consultez http://www.alternc.com/ + +Package: alternc-api +Architecture: all +Pre-depends: debconf (>= 0.5.00) | debconf-2.0 +Depends: debianutils (>= 1.13.1) + , alternc (>= 3.0) + , ${misc:Depends} +Conflicts: alternc (<< 3.0) +Description: Rest or get/post API for AlternC + AlternC is a mutualized hosting software manager for Linux. + It allows you to manage your websites, domains, ftp, emails, aliases, + web statistics, mailing-lists, jabber accounts, etc. + . + This extension to AlternC is installing and configuring properly the + GET/POST/REST API. You can then use https://yourpanel/api/ as an endpoint + to launch remotely any functions of the hosting control panel. + . + More information at http://www.alternc.com/ +Homepage: http://www.alternc.com/ + +Package: alternc-ssl +Priority: optional +Section: admin +Architecture: all +Depends: openssl, mysql-client, debconf, alternc (>= 3.0), php5-cli, ${misc:Depends} +Conflicts: alternc (<< 3.0) +Description: HTTPS module for AlternC + AlternC is a mutualized hosting software manager for Linux. + It allows you to manage your websites, domains, ftp, emails, aliases, + web statistics, mailing-lists, jabber accounts, etc. + . + This package is an optional module that adds HTTPS vhosts and SSL Certificates + management to the virtual desktop. + . + More information on http://www.alternc.com/ +Description-fr.UTF-8: Module HTTPS pour AlternC + AlternC est un logiciel d'hébergement mutualisé pour serveur Linux. + Il permet de gérer les sites web, domaines, ftp, emails, alias, + statistiques web, listes de discussions, comptes jabber, etc. + . + Ce paquet est un module optionnel qui permet aux utilisateurs + de gérer des hôtes virtuels HTTPS et des certificats SSL dans AlternC. diff --git a/debian/rules b/debian/rules index 1ca59c45..7b05a38a 100755 --- a/debian/rules +++ b/debian/rules @@ -20,6 +20,8 @@ override_dh_install: $(MAKE) install-upnp DESTDIR=$(CURDIR)/debian/alternc-upnp $(MAKE) install-awstats DESTDIR=$(CURDIR)/debian/alternc-awstats $(MAKE) install-slave DESTDIR=$(CURDIR)/debian/alternc-slave + $(MAKE) install-api DESTDIR=$(CURDIR)/debian/alternc-api + $(MAKE) -C ssl install DESTDIR=$(CURDIR)/debian/alternc-ssl %: dh $@