2016-03-14 00:21:33 +00:00
|
|
|
#! /usr/bin/env bash
|
2016-03-14 09:59:18 +00:00
|
|
|
|
2017-03-04 15:22:37 +00:00
|
|
|
# More info at: https://github.com/elitak/nixos-infect
|
2016-03-14 09:59:18 +00:00
|
|
|
|
2017-02-14 09:25:42 +00:00
|
|
|
set -e -o pipefail
|
2017-01-24 23:39:15 +00:00
|
|
|
|
2016-03-14 05:09:30 +00:00
|
|
|
makeConf() {
|
2017-02-14 09:25:42 +00:00
|
|
|
# Skip everything if main config already present
|
|
|
|
[[ -e /etc/nixos/configuration.nix ]] && return 0
|
2016-04-09 19:39:35 +00:00
|
|
|
# NB <<"EOF" quotes / $ ` in heredocs, <<EOF does not
|
2016-03-14 09:59:18 +00:00
|
|
|
mkdir -p /etc/nixos
|
2016-04-13 21:02:37 +00:00
|
|
|
local IFS=$'\n'; keys=($(grep -vE '^[[:space:]]*(#|$)' /root/.ssh/authorized_keys))
|
2016-03-14 09:59:18 +00:00
|
|
|
cat > /etc/nixos/configuration.nix << EOF
|
2016-03-14 20:28:14 +00:00
|
|
|
{ ... }: {
|
2016-03-14 05:09:30 +00:00
|
|
|
imports = [
|
|
|
|
./hardware-configuration.nix
|
2016-03-14 20:28:14 +00:00
|
|
|
./networking.nix # generated at runtime by nixos-infect
|
2016-03-14 05:09:30 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
boot.cleanTmpDir = true;
|
2016-03-14 09:59:18 +00:00
|
|
|
networking.hostName = "$(hostname)";
|
2016-03-14 20:28:14 +00:00
|
|
|
networking.firewall.allowPing = true;
|
|
|
|
services.openssh.enable = true;
|
2017-04-15 16:46:17 +00:00
|
|
|
users.users.root.openssh.authorizedKeys.keys = [$(for key in "${keys[@]}"; do echo -n "
|
2016-03-14 20:28:14 +00:00
|
|
|
\"$key\""; done)
|
|
|
|
];
|
2016-03-14 05:09:30 +00:00
|
|
|
}
|
|
|
|
EOF
|
2017-02-17 02:51:05 +00:00
|
|
|
# If you rerun this later, be sure to prune the filesSystems attr
|
2016-03-14 09:59:18 +00:00
|
|
|
cat > /etc/nixos/hardware-configuration.nix << EOF
|
2016-06-22 19:45:38 +00:00
|
|
|
{ ... }:
|
|
|
|
{
|
2016-03-14 05:09:30 +00:00
|
|
|
imports = [ <nixpkgs/nixos/modules/profiles/qemu-guest.nix> ];
|
2017-01-24 23:39:15 +00:00
|
|
|
boot.loader.grub.device = "/dev/$disk";
|
|
|
|
fileSystems."/" = { device = "/dev/${disk}1"; fsType = "ext4"; };
|
2016-03-14 05:09:30 +00:00
|
|
|
}
|
2016-04-09 19:39:35 +00:00
|
|
|
EOF
|
2017-04-10 15:50:09 +00:00
|
|
|
|
2017-02-14 08:37:47 +00:00
|
|
|
# XXX It'd be better if we used procfs for all this...
|
2016-04-09 19:39:35 +00:00
|
|
|
local IFS=$'\n'
|
2017-04-10 15:50:09 +00:00
|
|
|
eth0_name=$(ip address show | grep '^2:' | awk -F': ' '{print $2}')
|
2017-04-15 16:55:08 +00:00
|
|
|
eth0_ip4s=$(ip address show dev "$eth0_name" | grep 'inet ' | sed -r 's|.*inet ([0-9.]+)/([0-9]+).*|{ address="\1"; prefixLength=\2; }|')
|
|
|
|
eth0_ip6s=$(ip address show dev "$eth0_name" | grep 'inet6 ' | sed -r 's|.*inet6 ([0-9a-f:]+)/([0-9]+).*|{ address="\1"; prefixLength=\2; }|' || '')
|
|
|
|
gateway=$(ip route show dev "$eth0_name" | grep default | sed -r 's|default via ([0-9.]+).*|\1|')
|
|
|
|
ether0=$(ip address show dev "$eth0_name" | grep link/ether | sed -r 's|.*link/ether ([0-9a-f:]+) .*|\1|')
|
2017-04-10 15:50:09 +00:00
|
|
|
|
|
|
|
eth1_name=$(ip address show | grep '^3:' | awk -F': ' '{print $2}')||true
|
|
|
|
if [ -n "$eth1_name" ];then
|
2017-04-15 16:55:08 +00:00
|
|
|
eth1_ip4s=$(ip address show dev "$eth1_name" | grep 'inet ' | sed -r 's|.*inet ([0-9.]+)/([0-9]+).*|{ address="\1"; prefixLength=\2; }|')
|
|
|
|
eth1_ip6s=$(ip address show dev "$eth1_name" | grep 'inet6 ' | sed -r 's|.*inet6 ([0-9a-f:]+)/([0-9]+).*|{ address="\1"; prefixLength=\2; }|' || '')
|
|
|
|
ether1=$(ip address show dev "$eth1_name" | grep link/ether | sed -r 's|.*link/ether ([0-9a-f:]+) .*|\1|')
|
|
|
|
gateway6=$(ip -6 route show dev "$eth1_name" | grep default | sed -r 's|default via ([0-9a-f:]+).*|\1|' || true)
|
2017-04-10 15:50:09 +00:00
|
|
|
interfaces1=<< EOF
|
|
|
|
$eth1_name = {
|
2017-04-15 16:46:17 +00:00
|
|
|
ip4 = [$(for a in "${eth1_ip4s[@]}"; do echo -n "
|
2017-04-10 15:50:09 +00:00
|
|
|
$a"; done)
|
|
|
|
];
|
2017-04-15 16:46:17 +00:00
|
|
|
ip6 = [$(for a in "${eth1_ip6s[@]}"; do echo -n "
|
2017-04-10 15:50:09 +00:00
|
|
|
$a"; done)
|
|
|
|
];
|
|
|
|
EOF
|
|
|
|
extraRules1="ATTR{address}==\"${ether1}\", NAME=\"eth0\""
|
|
|
|
else
|
|
|
|
interfaces1=""
|
|
|
|
extraRules1=""
|
|
|
|
fi
|
|
|
|
|
2016-04-09 19:39:35 +00:00
|
|
|
nameservers=($(grep ^nameserver /etc/resolv.conf | cut -f2 -d' '))
|
|
|
|
|
|
|
|
cat > /etc/nixos/networking.nix << EOF
|
|
|
|
{ ... }: {
|
|
|
|
# This file was populated at runtime with the networking
|
|
|
|
# details gathered from the active system.
|
|
|
|
networking = {
|
2017-04-15 16:46:17 +00:00
|
|
|
nameservers = [$(for a in "${nameservers[@]}"; do echo -n "
|
2016-04-09 19:39:35 +00:00
|
|
|
\"$a\""; done)
|
|
|
|
];
|
|
|
|
defaultGateway = "${gateway}";
|
|
|
|
defaultGateway6 = "${gateway6}";
|
|
|
|
interfaces = {
|
2017-04-10 15:50:09 +00:00
|
|
|
$eth0_name = {
|
2017-04-15 16:46:17 +00:00
|
|
|
ip4 = [$(for a in "${eth0_ip4s[@]}"; do echo -n "
|
2016-04-09 19:39:35 +00:00
|
|
|
$a"; done)
|
|
|
|
];
|
2017-04-15 16:46:17 +00:00
|
|
|
ip6 = [$(for a in "${eth0_ip6s[@]}"; do echo -n "
|
2016-04-09 19:39:35 +00:00
|
|
|
$a"; done)
|
|
|
|
];
|
|
|
|
};
|
2017-04-10 15:50:09 +00:00
|
|
|
$interfaces1
|
2016-04-09 19:39:35 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
services.udev.extraRules = ''
|
2017-02-17 02:51:05 +00:00
|
|
|
ATTR{address}=="${ether0}", NAME="eth0"
|
2017-04-10 15:50:09 +00:00
|
|
|
$extraRules1
|
2016-04-09 19:39:35 +00:00
|
|
|
'';
|
|
|
|
}
|
2016-03-14 05:09:30 +00:00
|
|
|
EOF
|
2016-03-14 09:59:18 +00:00
|
|
|
#! /usr/bin/env bash
|
|
|
|
# NB put your semi-sensitive (not posted to github) configuration in a separate
|
|
|
|
# file and include it via this customConfig() function. e.g.:
|
|
|
|
# customConfig() {
|
|
|
|
# cat > /etc/nixos/custom.nix << EOF
|
|
|
|
# { config, lib, pkgs, ... }: {
|
|
|
|
# }
|
|
|
|
# EOF
|
|
|
|
# }
|
|
|
|
#
|
|
|
|
# then you can add the files in configuration.nix's imports above and run something like:
|
|
|
|
# cat customConfig nixos-infect | root@targethost bash
|
2017-02-14 08:18:59 +00:00
|
|
|
if [[ "$(type -t customConfig)" == "function" ]]; then customConfig; fi
|
2016-03-14 05:09:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
makeSwap() {
|
2017-02-14 01:30:42 +00:00
|
|
|
# TODO check currently available swapspace first
|
2017-04-15 16:52:39 +00:00
|
|
|
swapFile=$(mktemp /tmp/nixos-infect.XXXXX.swp)
|
2017-04-15 16:50:01 +00:00
|
|
|
dd if=/dev/zero "of=$swapFile" bs=1M count=$((1*1024))
|
|
|
|
chmod 0600 "$swapFile"
|
|
|
|
mkswap "$swapFile"
|
|
|
|
swapon -v "$swapFile"
|
2017-03-04 15:22:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
removeSwap() {
|
|
|
|
for swapFile in /tmp/nixos-infect.*.swp
|
|
|
|
do
|
2017-04-15 16:50:01 +00:00
|
|
|
swapoff -v "$swapFile"
|
|
|
|
rm -vf "$swapFile"
|
2017-03-04 15:22:46 +00:00
|
|
|
done
|
2016-03-14 05:09:30 +00:00
|
|
|
}
|
|
|
|
|
2017-02-14 01:30:42 +00:00
|
|
|
prepareEnv() {
|
|
|
|
# $disk is used in makeConf()
|
2017-02-14 08:18:59 +00:00
|
|
|
for disk in vda sda; do [[ -e /dev/$disk ]] && break; done
|
2016-08-18 12:23:42 +00:00
|
|
|
|
2017-02-14 01:30:42 +00:00
|
|
|
# DigitalOcean doesn't seem to set USER while running user data
|
|
|
|
export USER="root"
|
|
|
|
export HOME="/root"
|
2016-03-14 05:09:30 +00:00
|
|
|
|
2017-02-14 08:18:59 +00:00
|
|
|
# Use adapted wget if curl is missing
|
|
|
|
which curl || { \
|
|
|
|
curl() {
|
|
|
|
eval "wget $(
|
|
|
|
(local isStdout=1
|
|
|
|
for arg in "$@"; do
|
|
|
|
case "$arg" in
|
|
|
|
"-o")
|
|
|
|
echo "-O";
|
|
|
|
isStdout=0
|
|
|
|
;;
|
|
|
|
"-O")
|
|
|
|
isStdout=0
|
|
|
|
;;
|
|
|
|
"-L")
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "$arg"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done;
|
|
|
|
[[ $isStdout -eq 1 ]] && echo "-O-"
|
|
|
|
)| tr '\n' ' '
|
|
|
|
)"
|
|
|
|
}; export -f curl; }
|
|
|
|
|
|
|
|
# Nix installer tries to use sudo regardless of whether we're already uid 0
|
|
|
|
#which sudo || { sudo() { eval "$@"; }; export -f sudo; }
|
|
|
|
mkdir -p -m 0755 /nix
|
|
|
|
}
|
|
|
|
|
|
|
|
req() {
|
|
|
|
type "$1" > /dev/null 2>&1 || which "$1" > /dev/null 2>&1
|
2017-02-14 01:30:42 +00:00
|
|
|
}
|
2016-03-14 05:09:30 +00:00
|
|
|
|
2017-02-14 01:30:42 +00:00
|
|
|
checkEnv() {
|
2017-02-14 08:18:59 +00:00
|
|
|
# Perform some easy fixups before checking
|
|
|
|
which dnf && dnf install -y perl-Digest-SHA # Fedora 24
|
2017-04-10 15:50:09 +00:00
|
|
|
which bzcat || (which yum && yum install -y bzip2) \
|
|
|
|
|| (which apt-get && apt-get install bzip2) \
|
|
|
|
|| true
|
2017-02-14 08:18:59 +00:00
|
|
|
|
|
|
|
[[ "$(whoami)" == "root" ]] || { echo "ERROR: Must run as root"; return 1; }
|
|
|
|
|
2017-02-14 09:25:42 +00:00
|
|
|
req curl || req wget || { echo "ERROR: Missing both curl and wget"; return 1; }
|
|
|
|
req bzcat || { echo "ERROR: Missing bzcat"; return 1; }
|
|
|
|
req groupadd || { echo "ERROR: Missing groupadd"; return 1; }
|
|
|
|
req useradd || { echo "ERROR: Missing useradd"; return 1; }
|
|
|
|
req ip || { echo "ERROR: Missing ip"; return 1; }
|
|
|
|
req awk || { echo "ERROR: Missing awk"; return 1; }
|
|
|
|
req cut || { echo "ERROR: Missing cut"; return 1; }
|
2017-02-14 01:30:42 +00:00
|
|
|
}
|
2016-03-14 05:09:30 +00:00
|
|
|
|
2017-02-14 01:30:42 +00:00
|
|
|
infect() {
|
2017-02-14 08:18:59 +00:00
|
|
|
# Add nix build users
|
|
|
|
# FIXME run only if necessary, rather than defaulting true
|
2017-02-17 02:51:05 +00:00
|
|
|
groupadd nixbld -g 30000 || true
|
2017-04-15 16:56:26 +00:00
|
|
|
for i in {1..10}; do useradd -c "Nix build user $i" -d /var/empty -g nixbld -G nixbld -M -N -r -s "$(which nologin)" nixbld$i || true; done
|
2017-02-17 02:51:05 +00:00
|
|
|
# TODO use addgroup and adduser as fallbacks
|
|
|
|
#addgroup nixbld -g 30000 || true
|
|
|
|
#for i in {1..10}; do adduser -DH -G nixbld nixbld$i || true; done
|
2016-03-14 05:09:30 +00:00
|
|
|
|
2017-02-14 08:18:59 +00:00
|
|
|
curl https://nixos.org/nix/install | $SHELL
|
2016-09-07 18:36:01 +00:00
|
|
|
|
2017-02-14 01:30:42 +00:00
|
|
|
source ~/.nix-profile/etc/profile.d/nix.sh
|
2016-03-14 05:09:30 +00:00
|
|
|
|
2017-04-02 08:51:28 +00:00
|
|
|
[[ -z "$NIX_CHANNEL" ]] && NIX_CHANNEL="nixos-17.03"
|
2017-02-14 01:30:42 +00:00
|
|
|
nix-channel --remove nixpkgs
|
|
|
|
nix-channel --add "https://nixos.org/channels/$NIX_CHANNEL" nixos
|
|
|
|
nix-channel --update
|
2016-03-14 05:09:30 +00:00
|
|
|
|
2017-02-14 01:30:42 +00:00
|
|
|
export NIXOS_CONFIG=/etc/nixos/configuration.nix
|
2016-08-18 12:23:42 +00:00
|
|
|
|
2017-02-14 01:30:42 +00:00
|
|
|
nix-env --set \
|
|
|
|
-I nixpkgs=$HOME/.nix-defexpr/channels/nixos \
|
|
|
|
-f '<nixpkgs/nixos>' \
|
|
|
|
-p /nix/var/nix/profiles/system \
|
|
|
|
-A system
|
2016-08-18 12:23:42 +00:00
|
|
|
|
2017-02-14 01:30:42 +00:00
|
|
|
# Remove nix installed with curl | bash
|
|
|
|
rm -fv /nix/var/nix/profiles/default*
|
|
|
|
/nix/var/nix/profiles/system/sw/bin/nix-collect-garbage
|
2016-08-18 12:23:42 +00:00
|
|
|
|
2017-02-14 08:18:59 +00:00
|
|
|
# Reify resolv.conf
|
|
|
|
[[ -L /etc/resolv.conf ]] && mv -v /etc/resolv.conf /etc/resolv.conf.lnk && cat /etc/resolv.conf.lnk > /etc/resolv.conf
|
2017-02-14 01:30:42 +00:00
|
|
|
|
2017-02-14 08:18:59 +00:00
|
|
|
# Stage the Nix coup d'état
|
2017-02-14 01:30:42 +00:00
|
|
|
touch /etc/NIXOS
|
2017-02-14 08:18:59 +00:00
|
|
|
echo etc/nixos > /etc/NIXOS_LUSTRATE
|
|
|
|
echo etc/resolv.conf >> /etc/NIXOS_LUSTRATE
|
|
|
|
echo root/.nix-defexpr/channels >> /etc/NIXOS_LUSTRATE
|
2017-02-14 01:30:42 +00:00
|
|
|
|
2017-02-14 09:25:42 +00:00
|
|
|
rm -rf /boot.bak
|
|
|
|
mv -v /boot /boot.bak
|
|
|
|
/nix/var/nix/profiles/system/bin/switch-to-configuration boot
|
2017-02-14 01:30:42 +00:00
|
|
|
}
|
2016-08-18 12:23:42 +00:00
|
|
|
|
2017-02-14 01:30:42 +00:00
|
|
|
prepareEnv
|
2017-02-14 08:18:59 +00:00
|
|
|
checkEnv
|
|
|
|
makeConf
|
|
|
|
makeSwap # smallest (512MB) droplet needs extra memory!
|
|
|
|
infect
|
2017-03-04 15:22:46 +00:00
|
|
|
removeSwap
|
2017-02-14 08:18:59 +00:00
|
|
|
reboot
|