Skip to content
Snippets Groups Projects
Commit e5082a3d authored by Lars Beckers's avatar Lars Beckers
Browse files

fix some bugs, optimize some other things

parent 2c0570dc
No related branches found
No related tags found
No related merge requests found
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEwG9nY4C3knP7ABJMsyqu9ij+tH+sL/ekGFlydugE5/ lars@aurora
...@@ -18,3 +18,6 @@ ...@@ -18,3 +18,6 @@
- name: update initramfs - name: update initramfs
command: update-initramfs -u command: update-initramfs -u
- name: update timezone
command: dpkg-reconfigure --frontend noninteractive tzdata
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# file: roles/common/tasks/filesystem.yml # file: roles/common/tasks/filesystem.yml
- name: ensure /tmp is a tmpfs - name: ensure /tmp is a tmpfs
mount: name=/tmp src=tmpfs fstype=tmpfs opts=nosuid,rw mount: name=/tmp src=tmpfs fstype=tmpfs opts=nosuid,rw state=mounted
tags: tags:
- config - config
- mount - mount
--- ---
# file: roles/common/tasks/ntp.yml # file: roles/common/tasks/ntp.yml
- name: ensure correct timezone setting
copy: src=timezone dest=/etc/timezone owner=root group=root mode=0644
notify:
- update timezone
tags:
- config
- ntpd
- name: ensure ntpd is installed - name: ensure ntpd is installed
apt: name=ntp state=latest apt: name=ntp state=latest
tags: tags:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment