aboutsummaryrefslogtreecommitdiffstats
path: root/src/vps-do.pl
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-07-08 17:20:52 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-07-08 17:20:52 +0200
commit638933570f4f0275af4003622a700ad105a06dca (patch)
tree641aa5c74b04fe91a845ea938e3439831eb49a00 /src/vps-do.pl
parentIn progress (diff)
downloadjoe-scripts-638933570f4f0275af4003622a700ad105a06dca.tar.gz
joe-scripts-638933570f4f0275af4003622a700ad105a06dca.tar.bz2
joe-scripts-638933570f4f0275af4003622a700ad105a06dca.tar.xz
joe-scripts-638933570f4f0275af4003622a700ad105a06dca.tar.zst
joe-scripts-638933570f4f0275af4003622a700ad105a06dca.zip
Script renames
Diffstat (limited to 'src/vps-do.pl')
-rwxr-xr-xsrc/vps-do.pl58
1 files changed, 58 insertions, 0 deletions
diff --git a/src/vps-do.pl b/src/vps-do.pl
new file mode 100755
index 0000000..b88720c
--- /dev/null
+++ b/src/vps-do.pl
@@ -0,0 +1,58 @@
+#!/usr/local/bin/perl
+
+use strict;
+use warnings;
+use Term::ANSIColor;
+
+sub main {
+ my $argc = $#ARGV + 1;
+ if ($argc < 1) {
+ print colored("Failed!\n", 'bold red')
+ . 'Missing argument, at least 2 needed '
+ . colored("[script-invoke - (argument(s))]\n", 'bold');
+ exit 1;
+ }
+ my $scripts_dir = '/root/scripts/src/';
+ my $called_script = '';
+ my $word = '';
+ if (
+ $ARGV[0] eq 'addsshkey' ||
+ $ARGV[0] eq 'chdesc' ||
+ $ARGV[0] eq 'chowner' ||
+ $ARGV[0] eq 'newrepo' ||
+ $ARGV[0] eq 'newuser' ||
+ $ARGV[0] eq 'rmrepo' ||
+ $ARGV[0] eq 'rmuser'
+ ) {
+ $called_script = $scripts_dir . 'gitjoe/' . $ARGV[0] . '.pl';
+ }
+ elsif (
+ $ARGV[0] eq "update-gitjoe" ||
+ $ARGV[0] eq "update-serv"
+ ) {
+ $word = $ARGV[0];
+ $word =~ s/update-//;
+ $called_script = $scripts_dir . 'update/' . $word . '.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("chdesc\n", 'bold green')
+ . colored("chowner\n", 'bold green')
+ . colored("newrepo\n", 'bold green')
+ . colored("newuser\n", 'bold green')
+ . colored("rmrepo\n", 'bold green')
+ . colored("rmuser\n", 'bold green')
+ . colored("update-gitjoe\n", 'bold green')
+ . colored("update-serv\n", 'bold green');
+ exit 2;
+ }
+ print "Calling " . colored($called_script, 'bold green') . "...\n";
+ exit;
+}
+
+main();
+
+__END__