mirror of
https://github.com/elitak/nixos-infect
synced 2024-11-10 05:54:20 +00:00
Add support for Oracle Cloud Infrastructure (#77)
* Check environment before making any changes * Ignore missing dnf in checkEnv * Add EFI support * Generate correct file system type config * Fix XFS tools build error on AArch64 by updating channel * Add test results for Oracle Cloud Infrastructure * Fix spacing
This commit is contained in:
parent
894d0ff67d
commit
f9dcc164a3
2 changed files with 74 additions and 20 deletions
|
@ -14,6 +14,7 @@ This script has successfully been tested on at least the follow hosting provider
|
||||||
* [Interserver VPS](https://www.interserver.net/vps/)
|
* [Interserver VPS](https://www.interserver.net/vps/)
|
||||||
* [Tencent Cloud Lighthouse](https://cloud.tencent.com/product/lighthouse)
|
* [Tencent Cloud Lighthouse](https://cloud.tencent.com/product/lighthouse)
|
||||||
* [OVHcloud](https://www.ovh.com/)
|
* [OVHcloud](https://www.ovh.com/)
|
||||||
|
* [Oracle Cloud Infrastructure](https://www.oracle.com/cloud/)
|
||||||
|
|
||||||
Should you find that it works on your hoster,
|
Should you find that it works on your hoster,
|
||||||
feel free to update this README and issue a pull request.
|
feel free to update this README and issue a pull request.
|
||||||
|
@ -173,3 +174,10 @@ Before executing the install script, you may need to check your mounts with `df
|
||||||
|------------|-------------------|-----------|----------|
|
|------------|-------------------|-----------|----------|
|
||||||
|Arch Linux | Arch Linux x86-64 |**success**|2021-03-25|
|
|Arch Linux | Arch Linux x86-64 |**success**|2021-03-25|
|
||||||
|Debian | 10 |**success**|2021-04-29|
|
|Debian | 10 |**success**|2021-04-29|
|
||||||
|
|
||||||
|
### Oracle Cloud Infrastructure
|
||||||
|
Tested for both VM.Standard.E2.1.Micro (x86) and VM.Standard.A1.Flex (AArch64) instances.
|
||||||
|
#### Tested on
|
||||||
|
|Distribution| Name | Status | test date|
|
||||||
|
|------------|-----------------|-----------|----------|
|
||||||
|
|Oracle Linux| 7.9 |**success**|2021-05-31|
|
||||||
|
|
82
nixos-infect
82
nixos-infect
|
@ -36,14 +36,32 @@ makeConf() {
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
if isEFI; then
|
||||||
|
bootcfg=$(cat << EOF
|
||||||
|
boot.loader.grub = {
|
||||||
|
efiSupport = true;
|
||||||
|
efiInstallAsRemovable = true;
|
||||||
|
device = "nodev";
|
||||||
|
};
|
||||||
|
fileSystems."/boot" = { device = "$esp"; fsType = "vfat"; };
|
||||||
|
EOF
|
||||||
|
)
|
||||||
|
else
|
||||||
|
bootcfg=$(cat << EOF
|
||||||
|
boot.loader.grub.device = "$grubdev";
|
||||||
|
EOF
|
||||||
|
)
|
||||||
|
fi
|
||||||
|
|
||||||
# If you rerun this later, be sure to prune the filesSystems attr
|
# If you rerun this later, be sure to prune the filesSystems attr
|
||||||
cat > /etc/nixos/hardware-configuration.nix << EOF
|
cat > /etc/nixos/hardware-configuration.nix << EOF
|
||||||
{ modulesPath, ... }:
|
{ modulesPath, ... }:
|
||||||
{
|
{
|
||||||
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
|
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
|
||||||
boot.loader.grub.device = "$grubdev";
|
$bootcfg
|
||||||
boot.initrd.kernelModules = [ "nvme" ];
|
boot.initrd.kernelModules = [ "nvme" ];
|
||||||
fileSystems."/" = { device = "$rootfsdev"; fsType = "ext4"; };
|
fileSystems."/" = { device = "$rootfsdev"; fsType = "$rootfstype"; };
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
@ -136,13 +154,36 @@ removeSwap() {
|
||||||
rm -vf /tmp/nixos-infect.*.swp
|
rm -vf /tmp/nixos-infect.*.swp
|
||||||
}
|
}
|
||||||
|
|
||||||
|
isEFI() {
|
||||||
|
[ -d /sys/firmware/efi ]
|
||||||
|
}
|
||||||
|
|
||||||
|
findESP() {
|
||||||
|
esp=""
|
||||||
|
for d in /boot/EFI /boot/efi /boot; do
|
||||||
|
[[ ! -d "$d" ]] && continue
|
||||||
|
[[ "$d" == "$(df "$d" --output=target | sed 1d)" ]] \
|
||||||
|
&& esp="$(df "$d" --output=source | sed 1d)" \
|
||||||
|
&& break
|
||||||
|
done
|
||||||
|
[[ -z "$esp" ]] && { echo "ERROR: No ESP mount point found"; return 1; }
|
||||||
|
for uuid in /dev/disk/by-uuid/*; do
|
||||||
|
[[ $(readlink -f "$uuid") == "$esp" ]] && echo $uuid && return 0
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
prepareEnv() {
|
prepareEnv() {
|
||||||
# $grubdev is used in makeConf()
|
# $esp and $grubdev are used in makeConf()
|
||||||
for grubdev in /dev/vda /dev/sda /dev/nvme0n1 ; do [[ -e $grubdev ]] && break; done
|
if isEFI; then
|
||||||
|
esp="$(findESP)"
|
||||||
|
else
|
||||||
|
for grubdev in /dev/vda /dev/sda /dev/nvme0n1 ; do [[ -e $grubdev ]] && break; done
|
||||||
|
fi
|
||||||
|
|
||||||
# Retrieve root fs block device
|
# Retrieve root fs block device
|
||||||
# (get root mount) (get partition or logical volume)
|
# (get root mount) (get partition or logical volume)
|
||||||
rootfsdev=$(mount | grep "on / type" | awk '{print $1;}')
|
rootfsdev=$(mount | grep "on / type" | awk '{print $1;}')
|
||||||
|
rootfstype=$(df $rootfsdev --output=fstype | sed 1d)
|
||||||
|
|
||||||
# DigitalOcean doesn't seem to set USER while running user data
|
# DigitalOcean doesn't seem to set USER while running user data
|
||||||
export USER="root"
|
export USER="root"
|
||||||
|
@ -187,9 +228,11 @@ req() {
|
||||||
}
|
}
|
||||||
|
|
||||||
checkEnv() {
|
checkEnv() {
|
||||||
|
[[ "$(whoami)" == "root" ]] || { echo "ERROR: Must run as root"; return 1; }
|
||||||
|
|
||||||
# Perform some easy fixups before checking
|
# Perform some easy fixups before checking
|
||||||
# TODO prevent multiple calls to apt-get update
|
# TODO prevent multiple calls to apt-get update
|
||||||
which dnf && dnf install -y perl-Digest-SHA # Fedora 24
|
(which dnf && dnf install -y perl-Digest-SHA) || true # Fedora 24
|
||||||
which bzcat || (which yum && yum install -y bzip2) \
|
which bzcat || (which yum && yum install -y bzip2) \
|
||||||
|| (which apt-get && apt-get update && apt-get install -y bzip2) \
|
|| (which apt-get && apt-get update && apt-get install -y bzip2) \
|
||||||
|| true
|
|| true
|
||||||
|
@ -200,16 +243,14 @@ checkEnv() {
|
||||||
|| (which apt-get && apt-get update && apt-get install -y curl) \
|
|| (which apt-get && apt-get update && apt-get install -y curl) \
|
||||||
|| true
|
|| true
|
||||||
|
|
||||||
[[ "$(whoami)" == "root" ]] || { echo "ERROR: Must run as root"; return 1; }
|
req curl || req wget || { echo "ERROR: Missing both curl and wget"; return 1; }
|
||||||
|
req bzcat || { echo "ERROR: Missing bzcat"; return 1; }
|
||||||
req curl || req wget || { echo "ERROR: Missing both curl and wget"; return 1; }
|
req xzcat || { echo "ERROR: Missing xzcat"; return 1; }
|
||||||
req bzcat || { echo "ERROR: Missing bzcat"; return 1; }
|
req groupadd || { echo "ERROR: Missing groupadd"; return 1; }
|
||||||
req xzcat || { echo "ERROR: Missing xzcat"; return 1; }
|
req useradd || { echo "ERROR: Missing useradd"; return 1; }
|
||||||
req groupadd || { echo "ERROR: Missing groupadd"; return 1; }
|
req ip || { echo "ERROR: Missing ip"; return 1; }
|
||||||
req useradd || { echo "ERROR: Missing useradd"; return 1; }
|
req awk || { echo "ERROR: Missing awk"; return 1; }
|
||||||
req ip || { echo "ERROR: Missing ip"; return 1; }
|
req cut || req df || { echo "ERROR: Missing coreutils (cut, df)"; return 1; }
|
||||||
req awk || { echo "ERROR: Missing awk"; return 1; }
|
|
||||||
req cut || { echo "ERROR: Missing cut"; return 1; }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
infect() {
|
infect() {
|
||||||
|
@ -228,7 +269,7 @@ infect() {
|
||||||
# shellcheck disable=SC1090
|
# shellcheck disable=SC1090
|
||||||
source ~/.nix-profile/etc/profile.d/nix.sh
|
source ~/.nix-profile/etc/profile.d/nix.sh
|
||||||
|
|
||||||
[[ -z "$NIX_CHANNEL" ]] && NIX_CHANNEL="nixos-19.09"
|
[[ -z "$NIX_CHANNEL" ]] && NIX_CHANNEL="nixos-20.09"
|
||||||
nix-channel --remove nixpkgs
|
nix-channel --remove nixpkgs
|
||||||
nix-channel --add "https://nixos.org/channels/$NIX_CHANNEL" nixos
|
nix-channel --add "https://nixos.org/channels/$NIX_CHANNEL" nixos
|
||||||
nix-channel --update
|
nix-channel --update
|
||||||
|
@ -255,16 +296,21 @@ infect() {
|
||||||
echo root/.nix-defexpr/channels >> /etc/NIXOS_LUSTRATE
|
echo root/.nix-defexpr/channels >> /etc/NIXOS_LUSTRATE
|
||||||
|
|
||||||
rm -rf /boot.bak
|
rm -rf /boot.bak
|
||||||
|
isEFI && umount "$esp"
|
||||||
mv -v /boot /boot.bak
|
mv -v /boot /boot.bak
|
||||||
|
if isEFI; then
|
||||||
|
mkdir /boot
|
||||||
|
mount "$esp" /boot
|
||||||
|
find /boot -depth ! -path /boot -exec rm -rf {} +
|
||||||
|
fi
|
||||||
/nix/var/nix/profiles/system/bin/switch-to-configuration boot
|
/nix/var/nix/profiles/system/bin/switch-to-configuration boot
|
||||||
}
|
}
|
||||||
|
|
||||||
[ "$PROVIDER" = "digitalocean" ] && doNetConf=y # digitalocean requires detailed network config to be generated
|
[ "$PROVIDER" = "digitalocean" ] && doNetConf=y # digitalocean requires detailed network config to be generated
|
||||||
|
|
||||||
|
checkEnv
|
||||||
prepareEnv
|
prepareEnv
|
||||||
makeSwap # smallest (512MB) droplet needs extra memory!
|
makeSwap # smallest (512MB) droplet needs extra memory!
|
||||||
checkEnv
|
|
||||||
makeConf
|
makeConf
|
||||||
infect
|
infect
|
||||||
removeSwap
|
removeSwap
|
||||||
|
|
Loading…
Reference in a new issue