From ea6cb4e4f3b81aacf82358e8613d391c136ad2c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 12 Mar 2016 06:58:36 +0100 Subject: Adding container program. Signed-off-by: Daniel Baumann --- bin/cnt | 1 + bin/container | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 120000 bin/cnt create mode 100755 bin/container (limited to 'bin') diff --git a/bin/cnt b/bin/cnt new file mode 120000 index 0000000..50208cb --- /dev/null +++ b/bin/cnt @@ -0,0 +1 @@ +container \ No newline at end of file diff --git a/bin/container b/bin/container new file mode 100755 index 0000000..3bfe7b5 --- /dev/null +++ b/bin/container @@ -0,0 +1,47 @@ +#!/bin/sh + +# Open Infrastructure: container-tools +# Copyright (C) 2014-2016 Daniel Baumann +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +set -e + +SOFTWARE="container-tools" +PROGRAM="container" + +# Parameter +PARAMETER="${1}" + +if [ -z "${PARAMETER}" ] +then + echo "Usage: ${PROGRAM} COMMAND [OPTIONS]" >&2 + exit 1 +fi + +# Command +COMMAND="${1}" + +if [ ! -e "/usr/lib/${SOFTWARE}/${PROGRAM}/${COMMAND}" ] +then + echo "'${COMMAND}': no such ${PROGRAM} command" >&2 + exit 1 +fi + +# Options +shift 1 +OPTIONS="${@}" + +# Run +exec "/usr/lib/${SOFTWARE}/${PROGRAM}/${COMMAND}" "${OPTIONS}" -- cgit v1.2.3