OSDN Git Service

[add] : customize_airootfs.sh
[alterlinux/LUBS.git] / channels / share / airootfs / root / custmize_airootfs.sh
1 #!/usr/bin/env bash
2 #
3 # Yamada Hayao
4 # Twitter: @Hayao0819
5 # Email  : hayao@fascode.net
6 #
7 # (c) 2019-2020 Fascode Network.
8 #
9
10 set -e -u
11
12
13 # Default value
14 # Default value
15 # All values can be changed by arguments.
16 username="liveuser"
17
18
19 # Parse arguments
20 while getopts 'u:' arg; do
21     case "${arg}" in
22         u) username="${OPTARG}" ;;
23     esac
24 done