ba2b3b9707
Update /etc/apt/sources.list.d/ubuntu.sources
2025-04-12 19:16:23 +09:00
88bb60ea9a
Modify base
cookbook.
2025-01-19 22:22:14 +09:00
a52c841151
Add steps for SSH
daemon config.
2024-04-28 11:52:29 +09:00
8ae10311a6
Add steps for timesyncd
configs.
2024-04-28 11:51:05 +09:00
1943fb5f09
Change logic to deploy /etc/systemd/timesyncd.conf
.
2023-01-28 10:37:37 +09:00
c40dc83965
Update sshd_config
& deploy sshd_config
for Ubuntu 22.04
:
2023-01-28 10:37:37 +09:00
78b98cdab6
Update 50unattended-upgrades
and deploy
2023-01-28 10:37:37 +09:00
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
c6bfa2c09b
Delete the recipes for Ubuntu 16.04
.
2023-01-28 10:37:37 +09:00
b78aee2026
Deploy the /etc/multppath.conf
not to output the error message.
2020-11-07 13:02:31 +09:00
4432c311e8
Encrypt Public keys and etc.
2020-11-02 01:04:52 +09:00
fdfa8d05de
Install and initial setup for lsyncd
.
2020-11-02 00:53:39 +09:00
018890d7e1
Use unattended-upgrade
, instead of cron-apt
.
2020-10-13 21:18:37 +09:00
705432e244
Deploy sshd_config
for Ubuntu 20.04.
2020-10-13 21:18:37 +09:00
12aabfb6c0
Do NOT deploy perpare-commit-msg
.
2020-10-13 21:18:37 +09:00
47c2f7784a
Modify the kernel parameter to adjust the timeout for nf_conntrack.
2020-09-26 16:53:26 +09:00
39fbe6669b
initial commit
2019-03-03 16:50:49 +08:00