1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
From: =?utf-8?b?SsOpcsO0bWUgQ2hhcmFvdWk=?= <jerome@riseup.net>
Date: Wed, 1 Feb 2023 22:54:26 -0500
Subject: Remove nREPL service
Forwarded: not-needed
---
project.clj | 1 -
resources/puppetlabs/puppetdb/bootstrap.cfg | 4 ++--
2 files changed, 2 insertions(+), 3 deletions(-)
Index: puppetdb/project.clj
===================================================================
--- puppetdb.orig/project.clj
+++ puppetdb/project.clj
@@ -136,7 +136,6 @@
[org.clojure/tools.namespace "debian"]
[org.clojure/math.combinatorics "debian"]
[org.clojure/tools.logging "debian"]
- [org.clojure/tools.nrepl "debian"]
;; Puppet specific
[puppetlabs/comidi "debian"]
Index: puppetdb/resources/puppetlabs/puppetdb/bootstrap.cfg
===================================================================
--- puppetdb.orig/resources/puppetlabs/puppetdb/bootstrap.cfg
+++ puppetdb/resources/puppetlabs/puppetdb/bootstrap.cfg
@@ -23,8 +23,8 @@ puppetlabs.puppetdb.pdb-routing/maint-mo
puppetlabs.puppetdb.pdb-routing/pdb-routing-service
puppetlabs.puppetdb.config/config-service
-# NREPL
-puppetlabs.trapperkeeper.services.nrepl.nrepl-service/nrepl-service
+# NREPL -- disabled by default in Debian, requires libnrepl-clojure
+#puppetlabs.trapperkeeper.services.nrepl.nrepl-service/nrepl-service
# Dashboard redirect for "/" (not "/pdb"): remove to disable
puppetlabs.puppetdb.dashboard/dashboard-redirect-service
|