Itamae code to deploy the files.

This commit is contained in:
Kazuhiro MUSASHI 2024-02-12 17:52:23 +09:00
parent 8df5e02c18
commit 9a699f2d59
1 changed files with 9 additions and 0 deletions

View File

@ -79,3 +79,12 @@ remote_file '/etc/cron.d/remove_tmp' do
group 'root'
mode '644'
end
# Deploy `~/works/rsync.sh`:
%w( rsync.sh lsyncd.conf.lua ).each do |file|
remote_file "/home/kazu634/works/#{file}" do
owner 'kazu634'
group 'kazu634'
mode '755'
end
end