Tab/spaces consistency for templates

Signed-off-by: Stéphane Graber <stgraber@ubuntu.com>
This commit is contained in:
Stéphane Graber 2013-11-25 11:57:34 -05:00
parent f7f1ba77b7
commit c01c25fcdd
No known key found for this signature in database
GPG Key ID: C638974D64792D67
6 changed files with 42 additions and 37 deletions

View File

@ -336,11 +336,16 @@ apk_arch=$arch
case "$arch" in
i[3-6]86)
apk_arch=x86;;
apk_arch=x86
;;
x86)
lxc_arch=i686;;
x86_64|"") ;;
*) die "unsupported architecture: $arch";;
lxc_arch=i686
;;
x86_64|"")
;;
*)
die "unsupported architecture: $arch"
;;
esac
: ${APK:=apk}