diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-08 17:20:52 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-08 17:20:52 +0200 |
commit | 638933570f4f0275af4003622a700ad105a06dca (patch) | |
tree | 641aa5c74b04fe91a845ea938e3439831eb49a00 /src/vps.pl | |
parent | In progress (diff) | |
download | joe-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.pl')
-rwxr-xr-x | src/vps.pl | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/src/vps.pl b/src/vps.pl deleted file mode 100755 index b88720c..0000000 --- a/src/vps.pl +++ /dev/null @@ -1,58 +0,0 @@ -#!/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__ |