summaryrefslogtreecommitdiffstats
path: root/.local
diff options
context:
space:
mode:
Diffstat (limited to '.local')
-rwxr-xr-x.local/bin/sync-pull.pl38
-rwxr-xr-x.local/bin/sync-push.pl42
2 files changed, 80 insertions, 0 deletions
diff --git a/.local/bin/sync-pull.pl b/.local/bin/sync-pull.pl
new file mode 100755
index 0000000..c5ddb94
--- /dev/null
+++ b/.local/bin/sync-pull.pl
@@ -0,0 +1,38 @@
+#!/usr/local/bin/perl
+
+use strict;
+use warnings;
+
+sub main
+{
+ my $i;
+
+ print "Check...\n";
+ $i = 0;
+ while (system('/bin/pgrep', 'newsboat') == 0) {
+ print "newsboat running, exiting...";
+ exit 1;
+ }
+ system(
+ '/usr/local/bin/rsync',
+ '-a',
+ '-e',
+ 'ssh',
+ 'root@207.246.81.115:/root/sync/newsboat/cache.db',
+ '/home/jozan/.local/share/newsboat/cache.db'
+ );
+ system(
+ '/usr/local/bin/rsync',
+ '-a',
+ '-e',
+ 'ssh',
+ 'root@207.246.81.115:/root/sync/abook/addressbook',
+ '/home/jozan/.abook/addressbook'
+ );
+ exit 0;
+}
+
+main();
+
+__END__
+
diff --git a/.local/bin/sync-push.pl b/.local/bin/sync-push.pl
new file mode 100755
index 0000000..91b9e83
--- /dev/null
+++ b/.local/bin/sync-push.pl
@@ -0,0 +1,42 @@
+#!/usr/local/bin/perl
+
+use strict;
+use warnings;
+
+sub main
+{
+ my $i;
+
+ print "Check...\n";
+ $i = 0;
+ while (system('/bin/pgrep', 'newsboat') == 0) {
+ sleep 5;
+ $i += 1;
+ print "Waiting...\n";
+ if ($i == 12) {
+ print "Too long, exiting...\n";
+ exit 1;
+ }
+ }
+ system(
+ '/usr/local/bin/rsync',
+ '-a',
+ '-e',
+ 'ssh',
+ '/home/jozan/.local/share/newsboat/cache.db',
+ 'root@207.246.81.115:/root/sync/newsboat/cache.db'
+ );
+ system(
+ '/usr/local/bin/rsync',
+ '-a',
+ '-e',
+ 'ssh',
+ '/home/jozan/.abook/addressbook',
+ 'root@207.246.81.115:/root/sync/abook/addressbook'
+ );
+ exit 0;
+}
+
+main();
+
+__END__