summaryrefslogtreecommitdiff
path: root/alpine/world.sh
blob: b942ca098063992007fd1f9aa84b4ed7f543293b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/sh
#
# Copyright (C) 2025-2026 Maria Lisina
# SPDX-License-Identifier: Apache-2.0
#
# APK world setup script

set -e

__world="
    alpine-sdk
    curl
    dosfstools
    e2fsprogs
    efibootmgr
    fastfetch
    git
    jq
    lang
    linux-virt
    nano
    nano-syntax
    openssh
    recode
    telegram-bot-api
    tzdata
    util-linux
    zsh
    zsh-completions
"

cat << EOF > /etc/apk/repositories
https://dl-cdn.alpinelinux.org/alpine/v3.23/main
https://dl-cdn.alpinelinux.org/alpine/v3.23/community
https://dl-cdn.alpinelinux.org/alpine/edge/testing
EOF

apk update
apk add ${__world}