From 0b5dc8b3383f089861ec7fe86760e3e818b94e39 Mon Sep 17 00:00:00 2001
From: Peter Wilmott
Date: Fri, 24 Jul 2015 00:01:42 +0100
Subject: [PATCH] #3 : Deterministically generate IP and MAC addresses from the
container IDs
---
bocker | 34 +++++++++++++++++-----------------
1 file changed, 17 insertions(+), 17 deletions(-)
diff --git a/bocker b/bocker
index b5f7778..654c3aa 100755
--- a/bocker
+++ b/bocker
@@ -2,19 +2,16 @@
set -o errexit -o nounset -o pipefail; shopt -s nullglob
btrfs_path='/var/bocker';
function bocker_check() {
-[[ "$1" == 'img' ]] && TYPE='image'
-[[ "$1" == 'ps' ]] && TYPE='container'
-[[ "$1" == '' ]] && TYPE='container or image'
-if [[ "$2" == "$1"* ]]; then
- if btrfs subvolume list "$btrfs_path" | grep -qw "$2"; then
- return 0
- fi
+if btrfs subvolume list "$btrfs_path" | grep -qw "$1"; then
+ echo 0
+else
+ echo 1
fi
-echo "No $TYPE named '$2' exists" && exit 1
}
function bocker_init() { #HELP Create an image:\nBOCKER init
+uuid="img_$(shuf -i 42002-42254 -n 1)"
if [[ -d "$1" ]]; then
- uuid="img_$(shuf -i 10000-99999 -n 1)"
+ [[ "$(bocker_check "$uuid")" == 0 ]] && bocker_run "$@"
btrfs subvolume create "$btrfs_path/$uuid" > /dev/null
cp -rf --reflink=auto "$1"/* "$btrfs_path/$uuid" > /dev/null
echo "Created: $uuid"
@@ -23,7 +20,7 @@ else
fi
}
function bocker_rm() { #HELP Delete an image or container:\nBOCKER rm
-bocker_check '' "$1"
+[[ "$(bocker_check "$1")" == 1 ]] && echo "No container named '$1' exists" && exit 1
btrfs subvolume delete "$btrfs_path/$1" > /dev/null
echo "Removed: $1"
}
@@ -41,16 +38,18 @@ for ps in "$btrfs_path"/ps_*; do
done
}
function bocker_run() { #HELP Create a container:\nBOCKER run /dev/null
@@ -63,12 +62,13 @@ ip link del dev veth0_"$uuid"
ip netns del netns_"$uuid"
}
function bocker_logs() { #HELP View logs from a container:\nBOCKER logs
-bocker_check 'ps' "$1"
+[[ "$(bocker_check "$1")" == 1 ]] && echo "No container named '$1' exists" && exit 1
cat "$btrfs_path/$1/$1.log"
}
function bocker_commit() { #HELP Commit a container to an image:\nBOCKER commit
-bocker_check 'ps' "$1" && bocker_check 'img' "$2" && bocker_rm "$2"
-btrfs subvolume snapshot "$btrfs_path/$1" "$btrfs_path/$2" > /dev/null
+[[ "$(bocker_check "$1")" == 1 ]] && echo "No container named '$1' exists" && exit 1
+[[ "$(bocker_check "$2")" == 1 ]] && echo "No image named '$1' exists" && exit 1
+bocker_rm "$2" && btrfs subvolume snapshot "$btrfs_path/$1" "$btrfs_path/$2" > /dev/null
echo "Created: $2"
}
function bocker_help() { #HELP Display this message:\nBOCKER help