Old misslabled scripts

This commit is contained in:
Johan Wassberg 2024-01-15 11:28:53 +01:00
parent cb0d31e284
commit 08901b2e5e
Signed by: jocar
GPG key ID: BE4EC2EEADF2C31B
2 changed files with 0 additions and 48 deletions

View file

@ -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

View file

@ -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