Saltstack Official Linux Formula
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

15 líneas
516B

  1. # {{ name }} - getty
  2. #
  3. # This service maintains a getty on tty1 from the point the system is
  4. # started until it is shut down again.
  5. start on stopped rc RUNLEVEL=[2345] and (
  6. not-container or
  7. container CONTAINER=lxc or
  8. container CONTAINER=lxc-libvirt)
  9. stop on runlevel [!2345]
  10. respawn
  11. exec /sbin/getty{% if tty.get('autologin', False) %} --autologin {{ tty.autologin }}{% endif %} -8 {{ tty.get('rate', 38400) }} {{ name }}{% if tty.term is defined %} {{ tty.term }}{% endif %}