Created
April 28, 2023 10:28
Servicio para consumir el API de actualización de IP del DNS gratis dinámico
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Fichero systemd: | |
# /etc/systemd/system/cdmon_update.service | |
# | |
# Este servicio ejecuta el script que tengo preparado para | |
# consumir el API de actualización de IP del DNS gratis dinámico | |
# de mi proveedor de dominios CDMON. | |
# | |
# Para activarlo ver cdmon_update.timer | |
# | |
# Documento un caso de uso en este apunte: | |
# https://www.luispa.com/administración/2023/04/08/networking-avanzado.html | |
# | |
[Unit] | |
Description=CDMON Update | |
Wants=network-online.target internet_wait.service | |
After=network-online.target internet_wait.service | |
[Service] | |
Type=simple | |
ExecStart=/usr/bin/cdmon_update.sh | |
[Install] | |
WantedBy=multi-user.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment