aboutsummaryrefslogtreecommitdiffstats
path: root/vps-do.pl
diff options
context:
space:
mode:
authorJoe <bousset.rudy@gmail.com>2022-05-06 14:51:55 +0200
committerJoe <bousset.rudy@gmail.com>2022-05-06 14:51:55 +0200
commit361b43dd712750acb2494f848a8102a442ff1f75 (patch)
tree6af6d38b576be1d8fbefb90c61a561f2bbf044fe /vps-do.pl
parentremoved_shit (diff)
downloadjoe-scripts-361b43dd712750acb2494f848a8102a442ff1f75.tar.gz
joe-scripts-361b43dd712750acb2494f848a8102a442ff1f75.tar.bz2
joe-scripts-361b43dd712750acb2494f848a8102a442ff1f75.tar.xz
joe-scripts-361b43dd712750acb2494f848a8102a442ff1f75.tar.zst
joe-scripts-361b43dd712750acb2494f848a8102a442ff1f75.zip
update
Diffstat (limited to 'vps-do.pl')
-rwxr-xr-xvps-do.pl65
1 files changed, 0 insertions, 65 deletions
diff --git a/vps-do.pl b/vps-do.pl
deleted file mode 100755
index 0cc23d1..0000000
--- a/vps-do.pl
+++ /dev/null
@@ -1,65 +0,0 @@
-#!/usr/local/bin/perl
-
-use strict;
-use warnings;
-use Term::ANSIColor;
-
-use constant SCRIPTS_DIR => '/root/scripts/src/';
-use constant SSH_BOY => 'root@jozanofastora.xyz';
-
-sub main {
- my $argc = $#ARGV + 1;
- my $called_script = '';
- my $argv_line = '';
- if (
- $ARGV[0] eq 'addsshkey' ||
- $ARGV[0] eq 'newuser' ||
- $ARGV[0] eq 'rmuser' ||
- $ARGV[0] eq 'chdesc' ||
- $ARGV[0] eq 'chowner' ||
- $ARGV[0] eq 'chstate' ||
- $ARGV[0] eq 'newrepo' ||
- $ARGV[0] eq 'rmrepo' ||
- $ARGV[0] eq 'mvrepo'
- ) {
- $called_script = SCRIPTS_DIR . 'gitjoe/' . $ARGV[0] . '.pl';
- }
- else {
- print colored("Failed!\n", 'bold red')
- . colored($ARGV[0], 'bold yellow')
- . ": unknown script. Known scripts are:\n"
- . colored("addsshkey\n", 'bold green')
- . colored("newuser\n", 'bold green')
- . colored("rmuser\n", 'bold green')
- . colored("chdesc\n", 'bold green')
- . colored("chowner\n", 'bold green')
- . colored("chstate\n", 'bold green')
- . colored("newrepo\n", 'bold green')
- . colored("rmrepo\n", 'bold green')
- . colored("mvrepo\n", 'bold green');
- exit 2;
- }
- print "Calling " . colored($called_script, 'bold green') . " via " . colored(SSH_BOY, 'bold magenta') . ".\n";
- if ($argc > 1) {
- print "Arguments:\n";
- my $i = 1;
- while ($i < $argc) {
- $argv_line = $argv_line . ' "' . $ARGV[$i] . '"';
- print colored($ARGV[$i], 'bold yellow') . "\n";
- $i += 1;
- }
- }
- system(
- 'ssh ' . SSH_BOY . " << EOF
-" . $called_script . $argv_line . "
-exit
-EOF
-"
- );
- print "Done.\n";
- exit;
-}
-
-main();
-
-__END__