1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

service: add Spanish translation (#7311)

This commit is contained in:
Mario Gordon 2021-11-02 17:09:54 -05:00 committed by GitHub
parent 7fb59ee672
commit 5e22b5d56b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

20
pages.es/linux/service.md Normal file
View file

@ -0,0 +1,20 @@
# service
> Gestiona los servicios mediante la ejecución de scripts init.
> Se debe omitir la ruta completa del script (se asume `/etc/init.d/`).
- Lista el nombre y el estado de todos los servicios:
`service --status-all`
- Inicia/Para/Reinicia/Recarga servicio (_start_/_stop_ debería estar siempre disponible):
`service {{nombre_de_servicio}} {{start|stop|restart|reload}}`
- Hace un reinicio completo (ejecuta el script dos veces con _start_ y _stop_):
`service {{nombre_de_servicio}} --full-restart`
- Muestra el estado actual de un servicio:
`service {{nombre_de_servicio}} status`