6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-09-21 00:49:02 +00:00
tutor/cloud/clean.sh
2019-02-17 13:49:31 +01:00

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 {} \;