Last active
August 1, 2020 20:24
-
-
Save logan2611/3fd4d31dc6c640f00f1504522c0d7497 to your computer and use it in GitHub Desktop.
Converts any OpenVZ VPS to Alpine Linux. Edited from https://gist.github.com/trimsj/c1fefd650b5f49ceb8f3efc1b6a1404d
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh -e | |
# Converts OpenVZ VPS to Alpine Linux | |
# WARNING: This script will wipe any data in your VPS! | |
# GPLv2; Based on https://gist.github.com/trimsj/c1fefd650b5f49ceb8f3efc1b6a1404d, which is partly based on https://gitlab.com/drizzt/vps2arch | |
server=http://images.linuxcontainers.org | |
version="3.12" | |
path=$(wget -O- ${server}/meta/1.0/index-system | \ | |
grep $version | awk '-F;' '($1=="alpine" && $3=="amd64") {print $NF}' | tail -1) | |
cd / | |
mkdir /x | |
wget ${server}/${path}/rootfs.tar.xz | |
tar -C /x -xf rootfs.tar.xz | |
sed -i '/getty/d' /x/etc/inittab | |
sed -i 's/rc_sys="lxc"/rc_sys="openvz"/' /x/etc/rc.conf | |
# save root password and ssh directory | |
sed -i '/^root:/d' /x/etc/shadow | |
grep '^root:' /etc/shadow >> /x/etc/shadow | |
[ -d /root/.ssh ] && cp -a /root/.ssh /x/root/ | |
# save network configuration | |
dev=venet0 | |
ip=$(ip addr show dev $dev | grep global | awk '($1=="inet") {print $2}' | cut -d/ -f1 | head -1) | |
hostname=$(hostname) | |
cat > /x/etc/network/interfaces << EOF | |
auto lo | |
iface lo inet loopback | |
auto $dev | |
iface $dev inet static | |
address $ip | |
netmask 255.255.255.255 | |
up ip route add default dev $dev | |
hostname $hostname | |
EOF | |
cp /etc/resolv.conf /x/etc/resolv.conf | |
# remove all old files and replace with alpine rootfs | |
find / \( ! -path '/dev/*' -and ! -path '/proc/*' -and ! -path '/sys/*' -and ! -path '/x/*' \) -delete || true | |
/x/lib/ld-musl-x86_64.so.1 /x/bin/busybox cp -a /x/* / | |
export PATH="/usr/sbin:/usr/bin:/sbin:/bin" | |
rm -rf /x | |
apk update | |
apk add openssh bash | |
echo PermitRootLogin yes >> /etc/ssh/sshd_config | |
rc-update add sshd default | |
rc-update add mdev sysinit | |
rc-update add devfs sysinit | |
#sh # (for example, run `passwd`) | |
sync | |
reboot -f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment