dinit-base/config/rc.shutdown

13 lines
215 B
Bash

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