dinit-base/config/rc.local

13 lines
210 B
Bash

#!/bin/sh
# /etc/dinit.d/config/rc.local -- rc.local for Artix Linux
#
if [ -d /etc/local.d ]; then
for file in /etc/local.d/*.start; do
sh "$file"
done
fi
# Enter your custom commands here.