diff options
author | Joe <bousset.rudy@gmail.com> | 2022-05-06 14:57:57 +0200 |
---|---|---|
committer | Joe <bousset.rudy@gmail.com> | 2022-05-06 14:57:57 +0200 |
commit | 6054dcfd97bc7c3b2972ad21fe2ff171cd4be549 (patch) | |
tree | b2c7da23b69ea5be45beadf8361d0de7b2c36ff4 /src/chstate.pl | |
download | gitjoe-scripts-6054dcfd97bc7c3b2972ad21fe2ff171cd4be549.tar.gz gitjoe-scripts-6054dcfd97bc7c3b2972ad21fe2ff171cd4be549.tar.bz2 gitjoe-scripts-6054dcfd97bc7c3b2972ad21fe2ff171cd4be549.tar.xz gitjoe-scripts-6054dcfd97bc7c3b2972ad21fe2ff171cd4be549.tar.zst gitjoe-scripts-6054dcfd97bc7c3b2972ad21fe2ff171cd4be549.zip |
udpate
Diffstat (limited to 'src/chstate.pl')
-rwxr-xr-x | src/chstate.pl | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/chstate.pl b/src/chstate.pl new file mode 100755 index 0000000..1411e99 --- /dev/null +++ b/src/chstate.pl @@ -0,0 +1,44 @@ +#!/usr/local/bin/perl + +use strict; +use warnings; +use Term::ANSIColor; +use constant HOME_DIR => '/usr/local/git/'; + +sub main +{ + my $argc = $#ARGV + 1; + if ($argc < 2) { + print colored("Failed!\n", 'bold red') + . "Missing argument, 2 needed " + . colored("[user - reponame]", 'bold') + . "\n"; + exit 1; + } + my $usr = $ARGV[0]; + my $repo = $ARGV[1]; + my $home_dir = HOME_DIR . $usr . '/'; + if (substr($repo, -4) ne '.git') { + $repo = $repo . '.git'; + } + my $state; + if (-e $home_dir . $repo . '/git-daemon-export-ok') { + unlink($home_dir . $repo . '/git-daemon-export-ok'); + $state = 'private'; + } + else { + open(my $fh, '>', $home_dir . $repo . '/git-daemon-export-ok'); + close($fh); + $state = 'public'; + my (undef, undef, $uid, $gid) = getpwnam($usr); + chown $uid, $gid, $home_dir . $repo . '/git-daemon-export-ok'; + } + print "Changed git repository " . colored($repo, 'bold green') + . " for user " . colored($usr, 'bold green') + . colored(' visibility state', 'bold') . ' to '. colored($state, 'bold green') . ".\n"; + exit; +} + +main(); + +__END__ |