mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-05 04:48:00 +00:00
dabf22282c
Also, don't run clean script as sudo.
10 lines
473 B
Bash
Executable File
10 lines
473 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 | bash -e
|
|
echo "=============== Clean authorized keys"
|
|
sudo find / -name "authorized_keys" -exec rm -f {} \;
|
|
|
|
echo "=============== Clean history"
|
|
sudo find /root/.*history /home/*/.*history -exec rm -f {} \;
|