15 lines
268 B
Bash
Executable File
15 lines
268 B
Bash
Executable File
#!/bin/sh
|
|
set -ev
|
|
|
|
cd $(realpath $(dirname "${0}"))
|
|
|
|
# Install basic packages and perform OS customization
|
|
./basic.sh
|
|
|
|
# Clean package cache
|
|
rm -rf /var/cache/apk/*
|
|
# Remove root settings
|
|
find /root -mindepth 1 -maxdepth 1 | xargs rm -rf
|
|
# Change root password
|
|
passwd
|