This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- name: Install multiple packages 4 Druid | |
hosts: localhost | |
become: true | |
tasks: | |
- name: Update apt cache | |
ansible.builtin.apt: | |
update_cache: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# kinsing deleteing here | |
PID=$(pidof kinsing) | |
echo "$PID" | |
kill -9 $PID | |
# /tmp/kinsing deleteing here (Some times it will run /tmp path) | |
PID=$(pidof /tmp/kinsing) |