X-Git-Url: https://gerrit.akraino.org/r/gitweb?p=ta%2Finfra-ansible.git;a=blobdiff_plain;f=roles%2Fkernel-core-handling-config%2Ftasks%2Fmain.yml;fp=roles%2Fkernel-core-handling-config%2Ftasks%2Fmain.yml;h=0000000000000000000000000000000000000000;hp=b481b466c8e932eec6cff41f39c2e3d9e49d11f1;hb=c12b19e860be57972222a13b1abc01638f35d42a;hpb=3af9a356135ef1622e46dfafd215ebcea2db5bac diff --git a/roles/kernel-core-handling-config/tasks/main.yml b/roles/kernel-core-handling-config/tasks/main.yml deleted file mode 100644 index b481b46..0000000 --- a/roles/kernel-core-handling-config/tasks/main.yml +++ /dev/null @@ -1,27 +0,0 @@ ---- - -# Copyright 2019 Nokia - -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -- name: Check if crashkernel is defined - shell: cat /proc/cmdline - register: cmdline - -- name: Remove restriction of used cpus (not compatible with our own options) - replace: - path: /etc/sysconfig/kdump - regexp: '^(KDUMP_COMMANDLINE_APPEND=.*["\s])nr_cpus=1(["\s].*)$' - replace: '\1nr_cpus=0\2' - changed_when: cmdline.stdout.find('crashkernel') != -1 - notify: Restart kdump