base.yml 407 B

12345678910111213
  1. - name: Reconfigure timezone
  2. raw: rm -f /etc/timezone ; dpkg-reconfigure --frontend noninteractive tzdata
  3. - name: Apply kernel configuration (proc)
  4. service: name=procps state=restarted
  5. - name: Apply kernel configuration (sys)
  6. service: name=sysfsutils state=restarted
  7. - name: Refresh sysfs configuration
  8. shell: cat /etc/sysfs.d/* > /etc/sysfs.conf
  9. notify:
  10. - Apply kernel configuration (sys)