mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-10 23:30:59 +00:00
10 lines
468 B
Bash
Executable File
10 lines
468 B
Bash
Executable File
#! /bin/bash
|
|
# Clean an AWS instance so that it becomes ready for creating an AMI
|
|
# See https://aws.amazon.com/articles/how-to-share-and-use-public-amis-in-a-secure-manner/
|
|
# Run with: curl -sSL https://raw.githubusercontent.com/regisb/tutor/master/cloud/clean.sh | sudo bash -e
|
|
echo "=============== Clean authorized keys"
|
|
find / -name "authorized_keys" -exec rm -f {} \;
|
|
|
|
echo "=============== Clean history"
|
|
find /root/.*history /home/*/.*history -exec rm -f {} \;
|