Saltstack Official Linux Formula
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

25 行
686B

  1. {%- from "linux/map.jinja" import system with context %}
  2. {%- if system.enabled %}
  3. {%- if system.console is defined %}
  4. {%- for tty_name, console in system.console.iteritems() %}
  5. {%- if console.autologin %}
  6. autologin_{{ tty_name }}_enable:
  7. cmd.run:
  8. - name: "sed -i 's|/sbin/getty|/sbin/getty --autologin {{ console.autologin }}|g' /etc/init/{{ tty_name }}.conf"
  9. - unless: "grep 'autologin' /etc/init/{{ tty_name }}.conf"
  10. {%- else %}
  11. autologin_{{ tty_name }}_disable:
  12. cmd.run:
  13. - name: "sed -i 's| \-\-autologin [a-zA-Z0-9]*||g' /etc/init/{{ tty_name }}.conf"
  14. - onlyif: "grep 'autologin' /etc/init/{{ tty_name }}.conf"
  15. {%- endif %}
  16. {%- endfor %}
  17. {%- endif %}
  18. {%- endif %}