Commit f910f092 by Natanael Copa Committed by Stéphane Graber

lxc-setcap: use POSIX shell instead of bash

Avoid getopt --longoptions Signed-off-by: 's avatarNatanael Copa <ncopa@alpinelinux.org> Acked-by: 's avatarStéphane Graber <stgraber@ubuntu.com>
parent b45a7402
#!/bin/bash #!/bin/sh
# #
# lxc: linux Container library # lxc: linux Container library
...@@ -81,31 +81,39 @@ lxc_dropcaps() ...@@ -81,31 +81,39 @@ lxc_dropcaps()
chmod 0755 @LXCPATH@ chmod 0755 @LXCPATH@
} }
shortoptions='hd' usage_err() {
longoptions='help' [ -n "$1" ] && echo "$1" >&2
getopt=$(getopt -o $shortoptions --longoptions $longoptions -- "$@")
if [ $? != 0 ]; then
usage usage
exit 1 exit 1
fi }
eval set -- "$getopt" optarg_check() {
if [ -z "$2" ]; then
usage_err "option '$1' requires an argument"
fi
}
while true; do while [ $# -gt 0 ]; do
case "$1" in opt="$1"
shift
case "$opt" in
-d) -d)
LXC_DROP_CAPS="yes" LXC_DROP_CAPS="yes"
shift
;; ;;
-h|--help) -h|--help)
help help
exit 0 exit 0
;; ;;
--) --)
shift
break break
;; ;;
-?)
usage_err "unknown option '$opt'"
;;
-*)
# split opts -abc into -a -b -c
set -- $(echo "${opt#-}" | sed 's/\(.\)/ -\1/g') "$@"
;;
*) *)
usage usage
exit 1 exit 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment