Old misslabled scripts
This commit is contained in:
parent
cb0d31e284
commit
08901b2e5e
2 changed files with 0 additions and 48 deletions
|
@ -1,24 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
ip="${1}"
|
|
||||||
|
|
||||||
if [[ -z "${ip}" ]]; then
|
|
||||||
echo "Please specify a cloud image host that the script should do the following on:"
|
|
||||||
echo " #1 enable root-login"
|
|
||||||
echo " #2 remove the default user"
|
|
||||||
echo " #3 run apt-get update and dist-upgrade without interaction"
|
|
||||||
echo " #4 reboot to start using the new kernel, updated packages etc."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
set -x
|
|
||||||
|
|
||||||
ssh "debian@${ip}" sudo cp -r /home/debian/.ssh /root/
|
|
||||||
ssh "debian@${ip}" sudo chown -R root:root /root/.ssh
|
|
||||||
ssh "debian@${ip}" sudo chmod 700 /root/.ssh
|
|
||||||
ssh "debian@${ip}" sudo chmod 600 /root/.ssh/authorized_keys
|
|
||||||
ssh "root@${ip}" deluser debian
|
|
||||||
ssh "root@${ip}" rm /home/debian -rf
|
|
||||||
ssh "root@${ip}" rm /etc/sudoers.d/*
|
|
||||||
ssh "root@${ip}" DEBIAN_FRONTEND="noninteractive" apt-get -y update
|
|
||||||
ssh "root@${ip}" DEBIAN_FRONTEND="noninteractive" apt-get -o Dpkg::Options::="--force-confnew" --fix-broken --assume-yes dist-upgrade
|
|
||||||
ssh "root@${ip}" reboot
|
|
|
@ -1,24 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
ip="${1}"
|
|
||||||
|
|
||||||
if [[ -z "${ip}" ]]; then
|
|
||||||
echo "Please specify a cloud image host that the script should do the following on:"
|
|
||||||
echo " #1 enable root-login"
|
|
||||||
echo " #2 remove the default user"
|
|
||||||
echo " #3 run apt-get update and dist-upgrade without interaction"
|
|
||||||
echo " #4 reboot to start using the new kernel, updated packages etc."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
set -x
|
|
||||||
|
|
||||||
ssh "ubuntu@${ip}" sudo cp -r /home/ubuntu/.ssh /root/
|
|
||||||
ssh "ubuntu@${ip}" sudo chown -R root:root /root/.ssh
|
|
||||||
ssh "ubuntu@${ip}" sudo chmod 700 /root/.ssh
|
|
||||||
ssh "ubuntu@${ip}" sudo chmod 600 /root/.ssh/authorized_keys
|
|
||||||
ssh "root@${ip}" deluser ubuntu
|
|
||||||
ssh "root@${ip}" rm /home/ubuntu -rf
|
|
||||||
ssh "root@${ip}" rm /etc/sudoers.d/*
|
|
||||||
ssh "root@${ip}" DEBIAN_FRONTEND="noninteractive" apt-get -y update
|
|
||||||
ssh "root@${ip}" DEBIAN_FRONTEND="noninteractive" apt-get -o Dpkg::Options::="--force-confnew" --fix-broken --assume-yes dist-upgrade
|
|
||||||
ssh "root@${ip}" reboot
|
|
Loading…
Add table
Reference in a new issue