summaryrefslogtreecommitdiff
path: root/start-container-schroot.sh
diff options
context:
space:
mode:
Diffstat (limited to 'start-container-schroot.sh')
-rwxr-xr-xstart-container-schroot.sh8
1 files changed, 1 insertions, 7 deletions
diff --git a/start-container-schroot.sh b/start-container-schroot.sh
index b9419e0d..b9bacd88 100755
--- a/start-container-schroot.sh
+++ b/start-container-schroot.sh
@@ -13,7 +13,7 @@ set -e
# - definition of ${session_host} and ${session_port}, can be used for
# a remote connexion to the container
usage() {
- echo "Usage: $0 --arch container-arch --distro flavour [--session-host host] [--session-name name] [--task {build|test}] [--memory XXXX]"
+ echo "Usage: $0 --arch container-arch --distro flavour [--session-host host] [--session-name name] [--task {build|test}]"
echo
echo " container-arch: architecture (eg: amd64, i386, arm64, armhf)"
echo " distro: distribution (eg: trusty)"
@@ -21,7 +21,6 @@ usage() {
echo " useful if the name resolution does not work correctly"
echo " session-name: session, in case the default '$BUILD_NUMBER-$JOB_NAME' is not suitable"
echo " task: type of container (build or test, default=build)"
- echo " memory: ignored"
exit 1
}
@@ -65,11 +64,6 @@ do
[ x${task} = x ] && usage
shift 2
;;
- --memory)
- memory=$2
- [ x${memory} = x ] && usage
- shift 2
- ;;
*)
echo "Unsupported option: $1"
usage