Compare commits

..

No commits in common. "79a5d3438d1000368464470e6b766de44a451790" and "ec4ef71a559c680f1a61c900afce96cecfaa2699" have entirely different histories.

3 changed files with 0 additions and 45 deletions

View File

@ -1,16 +0,0 @@
settings {
logfile = "/var/log/lsyncd/lsyncd.log",
statusFile = "/var/log/lsyncd/lsyncd.status",
statusInterval = 20,
nodaemon = false
}
sync {
default.rsync,
source = "/home/kazu634/works/mnt/",
target = "kazu634@192.168.10.200:/volume1/homes/kazu634/Drive/Shared/project/",
rsync = {
archive = true,
compress = true
}
}

View File

@ -1,20 +0,0 @@
#!/bin/bash
CONF=/etc/lsyncd/lsyncd.conf.lua
if [ ! -d mnt/ ]; then
mkdir -p mnt/
rsync -arv kazu634@192.168.10.200:/volume1/homes/kazu634/Drive/Shared/project/ mnt/
fi
if [ ! -e ${CONF} ]; then
sudo cp ./lsyncd.conf.lua ${CONF}
sudo chown root:root ${CONF}
sudo chmod 644 ${CONF}
sudo systemctl enable lsyncd.service
sudo systemctl restart lsyncd.service
fi
exit $?

View File

@ -79,12 +79,3 @@ 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