| 123456789101112131415161718192021222324252627282930 | #!/bin/shecho -e '  __  __ _ |  \/  (_)___ __ | |\/| | (_-</ _| |_|  |_|_/__/\__|'. bin/checkroot.shsleep 2echo '@edge http://dl-cdn.alpinelinux.org/alpine/edge/main@edgecommunity http://dl-cdn.alpinelinux.org/alpine/edge/community@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing' >> /etc/apk/repositoriesapk updateapk add procps vim curl tmux etckeeper htop lynx unzip # needrestart# sed -i "s/^# en_GB.UTF-8/en_GB.UTF-8/g" /etc/locale.gen# locale-genapk add tzdataTIMEZONE="Europe/Paris"cp /usr/share/zoneinfo/${TIMEZONE} /etc/localtimeecho "${TIMEZONE}" > /etc/timezoneecho -e "Misc done"
 |