14 lines
118 B
Bash
Executable File
14 lines
118 B
Bash
Executable File
#!/bin/bash
|
|
|
|
apt update;
|
|
|
|
apt install -y openssh-server;
|
|
|
|
apt install -y sudo;
|
|
|
|
service ssh restart;
|
|
|
|
##
|
|
|
|
echo "fin."
|