diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-08 17:19:48 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-07-08 17:19:48 +0200 |
commit | f7e1644e15162a6d624e940a54904da853f2cd89 (patch) | |
tree | 8b380b88c3b120b2c4811716a8abd9d56ec45046 | |
parent | README update again (diff) | |
download | joe-scripts-f7e1644e15162a6d624e940a54904da853f2cd89.tar.gz joe-scripts-f7e1644e15162a6d624e940a54904da853f2cd89.tar.bz2 joe-scripts-f7e1644e15162a6d624e940a54904da853f2cd89.tar.xz joe-scripts-f7e1644e15162a6d624e940a54904da853f2cd89.tar.zst joe-scripts-f7e1644e15162a6d624e940a54904da853f2cd89.zip |
In progress
-rw-r--r-- | README.org | 1 | ||||
-rwxr-xr-x | src/vps.pl | 58 |
2 files changed, 58 insertions, 1 deletions
@@ -15,7 +15,6 @@ The source tree is the following: #+BEGIN_SRC shell └── src - ├── distant ├── gitjoe │ ├── addsshkey.pl │ ├── chdesc.pl diff --git a/src/vps.pl b/src/vps.pl new file mode 100755 index 0000000..b88720c --- /dev/null +++ b/src/vps.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__ |