10 lines
255 B
Bash
10 lines
255 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
key=$(cat /dev/urandom | tr -dc a-zA-Z0-9 | fold -w 32 | head -n 1);
|
||
|
address=$1
|
||
|
port=$2
|
||
|
user_ru="support@ispsystem.ru";
|
||
|
user_com="support@ispsystem.com";
|
||
|
is_admin=1;
|
||
|
echo $key $user_ru $user_com $is_admin
|
||
|
username="s.gudaev@ssh.ispsystem.net"
|