blob: 0a6a0e8457fd3481f73f1080d0b732c7392c8c46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#!/usr/local/bin/perl
use strict;
use warnings;
use Term::ANSIColor;
sub main {
my $argc = $#ARGV + 1;
if ($argc < 3) {
print colored("Failed!\n", 'bold red')
. "Missing argument, 2 needed "
. colored("[user - password - ssh public key]", 'bold')
. "\n";
exit 1;
}
my $usr = $ARGV[0];
my $pass = $ARGV[1];
my $home_dir = '/usr/home/' . $usr . '/';
system(
'/usr/local/bin/dash',
'-c',
"adduser << EOF
" . $usr . "
git-shell
" . $pass . "
" . $pass . "
yes
no
EOF"
);
my $gitshell_cmds = "cd
touch
git
ls";
open(my $fh, '>:encoding(UTF-8)', $home_dir . 'git-shell-commands');
print $fh $gitshell_cmds;
close($fh);
}
main();
__END__
|