instantcert and kill_zombies

master
zeus 2021-01-25 01:38:18 +01:00
parent 4d8ff7d7b8
commit 6e5c55b0bf
2 changed files with 8 additions and 0 deletions

5
bash/instantcert.sh Normal file
View File

@ -0,0 +1,5 @@
#!/bin/bash
# http://www.akadia.com/services/ssh_test_certificate.html
# create and sign openssl-cert
openssl genrsa -des3 -out server.key 1024 && openssl req -new -key server.key -out server.csr && cp server.key server.key.org && openssl rsa -in server.key.org -out server.key && openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt

3
bash/kill_zombies.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/bash
# killing zombies if possible
kill -HUP `ps -A -ostat,ppid,pid,cmd | grep -e '^[Zz]' | awk '{print $2}'`; kill -TERM `ps -A -ostat,ppid,pid,cmd | grep -e '^[Zz]' | awk '{print $2}'`