proxmox/nixprox.sh: init

This commit is contained in:
Astro 2021-09-04 18:26:22 +02:00
parent add5efdc7b
commit 12cb607d7a
1 changed files with 22 additions and 0 deletions

22
proxmox/nixprox.sh Executable file
View File

@ -0,0 +1,22 @@
#!/usr/bin/env bash
set -e
TEMPLATE=/tmp/nixos.tar.xz
[ -e $TEMPLATE ] || wget -O $TEMPLATE https://hydra.nixos.org/job/nixos/release-21.05/nixos.containerTarball.x86_64-linux/latest/download-by-type/file/system-tarball
if [ $# != 2 ]; then
echo "Usage: $0 <ctid> <hostname>"
exit 1
fi
ID=$1
NAME=$2
#pct create $ID local:vztmpl/nixos-system-x86_64-linux.tar.xz --arch amd64 --hostname $NAME --ostype unmanaged --net0 name=eth0,bridge=vmbr0,tag=5 --storage vms-slow --cmode shell
pct create $ID $TEMPLATE --hostname $NAME --ostype unmanaged --arch amd64 --net0 name=eth0,bridge=vmbr0,tag=5 --storage vms-slow --cmode shell --features nesting=1
echo "lxc.init.cmd: /init" >> /etc/pve/lxc/$ID.conf
echo Done, Starting $ID
pct start $ID