debian - activar - systemctl rc local
¿Dónde está rc.local en Debian 9(Debian Stretch) (2)
Parece que no hay /etc/rc.local
en la última versión estable de Debian, Debian Stretch . ¿Dónde está? ¿Es /etc/rc.local obsoleto?
/etc/rc.local no se invoca desde /etc/init.d/rc.local (al menos en el sistema de tramo Debian que acabo de instalar hoy), porque /etc/init.d/rc.local no existe en ese sistema
rc.local
está en desuso.
Parece que todavía puedes tener uno:
cat <<EOF >/etc/rc.local
#!/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.
exit 0
EOF
chmod +x /etc/rc.local
systemctl daemon-reload
systemctl start rc-local
systemctl status rc-local
● rc-local.service - /etc/rc.local Compatibility
Loaded: loaded (/lib/systemd/system/rc-local.service; static; vendor preset: enabled)
Drop-In: /lib/systemd/system/rc-local.service.d
└─debian.conf
Active: inactive (dead)
Condition: start condition failed at Wed 2017-06-28 11:32:36 UTC; 3min 13s ago
El preajuste del proveedor debe estar habilitado. Puede agregar algunos echo 123 >/proof
a su rc.local y reiniciar, asegurándose de que funcione. Confirmo que sí, utilizando el último Debian Stretch AMI en EC2, ...