We are happy to announce that Vesta is back under active development as of 25 February 2024. We are working on Vesta 2.0 and expect to release it by the end of 2024. Read more about it: https://vestacp.com/docs/vesta-2-development
Suspend multiple users API
Suspend multiple users API
to suspend more than one user through the api
thus works hand control through
create bin v-suspend-mulit-user
code by: tjebbeke
thus works hand control through
create bin v-suspend-mulit-user
Code: Select all
#!/bin/bash
for user in "$@"
do
echo "Suspend user $user"
v-suspend-user $user
done
Code: Select all
execute: v-suspend-mulit-user user1 user2 user3
Re: [Manual] suspend multiple users API (!)
Nice recipe!