Go to file
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
cookbooks Install `systemd-timesyncd` and add its config file: 2023-01-28 10:37:37 +09:00
nodes Add `node` json example. 2022-07-03 21:46:04 +09:00
roles Create `digdag` role. 2022-08-06 21:21:20 +09:00
tasks Use `fzf`, instead of `peco`. 2019-11-03 13:08:14 +08:00
.gitignore Ignore `nodes/*.json`: 2022-08-06 21:25:30 +09:00
.rubocop-todo.yml initial commit 2019-03-03 16:50:49 +08:00
.rubocop.yml initial commit 2019-03-03 16:50:49 +08:00
.ruby-version Bump `ruby` version. 2022-07-03 21:23:53 +09:00
Gemfile initial commit 2019-03-03 16:50:49 +08:00
Gemfile.lock Bump gems' versions. 2022-07-03 21:26:20 +09:00
Rakefile initial commit 2019-03-03 16:50:49 +08:00
entrypoint.rb initial commit 2019-03-03 16:50:49 +08:00