aboutsummaryrefslogtreecommitdiffstats
path: root/src/update/vps.pl
diff options
context:
space:
mode:
Diffstat (limited to 'src/update/vps.pl')
-rwxr-xr-xsrc/update/vps.pl28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/update/vps.pl b/src/update/vps.pl
new file mode 100755
index 0000000..77c64ff
--- /dev/null
+++ b/src/update/vps.pl
@@ -0,0 +1,28 @@
+#!/usr/local/bin/perl
+
+use strict;
+use warnings;
+use Term::ANSIColor;
+
+sub main {
+ system(
+ '/usr/local/bin/dash',
+ '-c',
+ 'git -C /usr/local/www/jozan pull >/dev/null 2>&1'
+ );
+ system(
+ '/usr/local/bin/dash',
+ '-c',
+ 'git -C /usr/local/www/git-jozan pull >/dev/null 2>&1'
+ );
+ system(
+ '/usr/local/bin/dash',
+ '-c',
+ 'git -C /root/scripts pull >/dev/null 2>&1'
+ );
+ exit;
+}
+
+main();
+
+__END__