lxc-config/hooks/update-lxc-configs

21 lines
797 B
Ruby
Executable File

#!/usr/bin/env ruby
require "pathname"
require_relative "lib/lxc"
LXC_CONTAINER_ROOT = Pathname.new("/data/containers")
registry = Lxc::Registry.new
network = registry.data["network"] || {}
network.each do |name, container|
next if container["lxc"] == false
container = Lxc::Container.new(registry.data,
name: name,
ipv4: container["ipv4"],
ipv6: container["ipv6"],
ula: container["ula"],
rootfs: LXC_CONTAINER_ROOT.join(name, "rootfs"),
group: container["group"],
vars: container["vars"])
container.write_config(LXC_CONTAINER_ROOT.join(name, "config"))
end