alpine/base/app/init.d/01-init.sh
2024-07-19 23:41:52 +00:00

8 lines
No EOL
169 B
Bash
Executable file

#!/usr/bin/env bash
# Create base directories
for dir in vnc config ssh
do
[ -d ~/.${dir} ] || mkdir -p ~/.${dir}
done
## OPTIONAL: More commands may be added below