blob: 83e1d5cb9cb4c81f3740cc7b3bfd14c28292e42f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
#
# Copyright (C) 2025-2026 Maria Lisina
# SPDX-License-Identifier: Apache-2.0
#
# Alpine Linux setup script, supposed to be ran in chroot
set -e
__dir="${0%/*}"
${__dir}/networking.sh ${1}
${__dir}/world.sh
${__dir}/fstab.sh ${2}
${__dir}/locale.sh
${__dir}/timezone.sh ${3}
${__dir}/nano.sh
${__dir}/ssh.sh
${__dir}/rc.sh
|