itamae/cookbooks/base/files
Kazuhiro MUSASHI a773b4a1b5 Install `systemd-timesyncd` and add its config file:
```
--- a/cookbooks/base/default.rb
+++ b/cookbooks/base/default.rb
@@ -80,6 +80,20 @@
 when "20.04", "22.04"
   service 'multipath-tools' do
     action :nothing
   end
+
+  package 'systemd-timesyncd'
+
+  service 'systemd-timesyncd' do
+    action :enable
+  end
+
+  remote_file '/etc/systemd/timesyncd.conf' do
+    owner 'root'
+    group 'root'
+    mode '0644'
+
+    notifies :restart, 'service[systemd-timesyncd]'
+  end
 end
```
2023-01-28 10:37:37 +09:00
..
etc Install `systemd-timesyncd` and add its config file: 2023-01-28 10:37:37 +09:00
root/.ssh Encrypt Public keys and etc. 2020-11-02 01:04:52 +09:00
usr/share/git-core/templates/hooks Do NOT deploy `perpare-commit-msg`. 2020-10-13 21:18:37 +09:00