#! /usr/bin/env perl # vim: set filetype=perl ts=4 sw=4 sts=4 et: use common::sense; use File::Basename; use lib dirname(__FILE__) . '/../../../lib/perl'; use OVH::Result; use OVH::Bastion; use OVH::Bastion::Plugin qw( :DEFAULT help ); use OVH::Bastion::Plugin::groupSetRole; my $remainingOptions = OVH::Bastion::Plugin::begin( argv => \@ARGV, header => "grant an account as member of a group", options => { "account=s" => \my $account, "group=s" => \my $group, }, helptext => <<'EOF', Add an account to the member list Usage: --osh SCRIPT_NAME --group GROUP --account ACCOUNT --group GROUP which group to set ACCOUNT as a member of --account ACCOUNT which account to set as a member of GROUP The specified account will be able to access all present and future servers pertaining to this group. If you need to give a specific and/or temporary access instead, see ``groupAddGuestAccess`` EOF ); my $fnret = OVH::Bastion::Plugin::groupSetRole::act( account => $account, group => $group, action => 'add', type => 'member', sudo => 0, silentoverride => 0, self => $self, scriptName => $scriptName, savedArgs => $savedArgs ); help() if not $fnret; osh_exit($fnret);