Return-Path: X-Original-To: apmail-cloudstack-commits-archive@www.apache.org Delivered-To: apmail-cloudstack-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E9204114FC for ; Fri, 12 Sep 2014 11:58:55 +0000 (UTC) Received: (qmail 45545 invoked by uid 500); 12 Sep 2014 11:58:55 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 45509 invoked by uid 500); 12 Sep 2014 11:58:55 -0000 Mailing-List: contact commits-help@cloudstack.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cloudstack.apache.org Delivered-To: mailing list commits@cloudstack.apache.org Received: (qmail 45494 invoked by uid 99); 12 Sep 2014 11:58:55 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Sep 2014 11:58:55 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 5D3E4A11336; Fri, 12 Sep 2014 11:58:55 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: bhaisaab@apache.org To: commits@cloudstack.apache.org Date: Fri, 12 Sep 2014 11:58:55 -0000 Message-Id: <1e44e544e98b45948dfc9bc00a963186@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/2] git commit: updated refs/heads/master to aeec24b Repository: cloudstack Updated Branches: refs/heads/master d90a2d396 -> aeec24b2c developer: enable saml plugin for developers by default Deploydb with a -P developer profile will run developer-prefill, in that we enable the SAML plugin by default but only for developers Signed-off-by: Rohit Yadav Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/3df104e2 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/3df104e2 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/3df104e2 Branch: refs/heads/master Commit: 3df104e20d12de97f4733876e9126c1267c341af Parents: d90a2d3 Author: Rohit Yadav Authored: Fri Sep 12 13:40:20 2014 +0200 Committer: Rohit Yadav Committed: Fri Sep 12 13:40:20 2014 +0200 ---------------------------------------------------------------------- developer/developer-prefill.sql | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/3df104e2/developer/developer-prefill.sql ---------------------------------------------------------------------- diff --git a/developer/developer-prefill.sql b/developer/developer-prefill.sql index 7b423a1..5cd0a6d 100644 --- a/developer/developer-prefill.sql +++ b/developer/developer-prefill.sql @@ -63,4 +63,9 @@ INSERT INTO `cloud`.`configuration` (category, instance, component, name, value) VALUES ('Advanced', 'DEFAULT', 'management-server', 'developer', 'true'); +-- Enable SAML plugin for developers by default +INSERT INTO `cloud`.`configuration` (category, instance, component, name, value) + VALUES ('Advanced', 'DEFAULT', 'management-server', + 'saml2.enabled', 'true'); + commit;