From 40435a1793857a826171495a4fdde59d5d4b781c Mon Sep 17 00:00:00 2001 From: Brian Bouterse Date: Thu, 10 Oct 2019 09:26:26 -0400 Subject: [PATCH] Removing old pulp2 defaults files The /etc/default/ files are no longer used by the Installer. https://pulp.plan.io/issues/5565 closes #5565 --- CHANGES/5565.misc | 1 + pulpcore/etc/default/pulp_resource_manager | 4 ---- pulpcore/etc/default/pulp_workers | 12 ------------ 3 files changed, 1 insertion(+), 16 deletions(-) create mode 100644 CHANGES/5565.misc delete mode 100644 pulpcore/etc/default/pulp_resource_manager delete mode 100644 pulpcore/etc/default/pulp_workers diff --git a/CHANGES/5565.misc b/CHANGES/5565.misc new file mode 100644 index 0000000000..5eac9ef2a3 --- /dev/null +++ b/CHANGES/5565.misc @@ -0,0 +1 @@ +Removing pulp2 `/etc/default/*` files no longer used by Pulp3. diff --git a/pulpcore/etc/default/pulp_resource_manager b/pulpcore/etc/default/pulp_resource_manager deleted file mode 100644 index 7cf21d8d02..0000000000 --- a/pulpcore/etc/default/pulp_resource_manager +++ /dev/null @@ -1,4 +0,0 @@ -# Configuration file for Pulp's Resource Manager - -# Configure Python's encoding for writing all logs, stdout and stderr -PYTHONIOENCODING="UTF-8" diff --git a/pulpcore/etc/default/pulp_workers b/pulpcore/etc/default/pulp_workers deleted file mode 100644 index e74225b98a..0000000000 --- a/pulpcore/etc/default/pulp_workers +++ /dev/null @@ -1,12 +0,0 @@ -# Configuration file for Pulp's workers - -# Define the number of worker nodes you wish to have here. This defaults to the number of processors -# that are detected on the system if left commented here. -# PULP_CONCURRENCY=4 - -# Configure Python's encoding for writing all logs, stdout and stderr -PYTHONIOENCODING="UTF-8" - -# To avoid memory leaks, Pulp can terminate and replace a worker after processing X tasks. If -# left commented, process recycling is disabled. PULP_MAX_TASKS_PER_CHILD must be > 0. -# PULP_MAX_TASKS_PER_CHILD=2