#!/bin/bash
# Load gparted live functions
. /usr/bin/gl-functions

# gl_kbd is like: en, es, uk (2 lowecase letters)
parse_cmdline_option "gl_kbd"

if [ -z "$gl_kbd" ]; then
  dpkg-reconfigure console-data
else
  install-keymap ${gl_kbd}
fi
