delphinium-sdk/blends/devuan-minimal-live/chimaera/rootfs_overlay/etc/rc.local
2021-11-22 07:59:25 -05:00

21 lines
408 B
Bash
Executable File

#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
[ -d /etc/boot.d ] && run-parts /etc/boot.d
dpkg-reconfigure iputils-ping # Enable ping for user.
exit 0