2025-03-14 15:46:26 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
##
|
2025-05-28 21:40:56 -04:00
|
|
|
## This script installs stuff
|
2025-03-14 15:46:26 -04:00
|
|
|
## to set up a linux server
|
|
|
|
|
## suitable for newbies.
|
|
|
|
|
##
|
|
|
|
|
## Before you go, check read around my blog!
|
|
|
|
|
##
|
|
|
|
|
## https://softwareshinobi.com
|
|
|
|
|
##
|
|
|
|
|
##
|
|
|
|
|
|
|
|
|
|
set -e;
|
|
|
|
|
|
|
|
|
|
set -x;
|
|
|
|
|
|
2025-05-28 21:40:56 -04:00
|
|
|
##
|
2025-03-14 15:46:26 -04:00
|
|
|
|
2025-06-11 09:38:24 -04:00
|
|
|
cd server
|
2025-03-14 15:46:26 -04:00
|
|
|
|
2025-06-11 09:38:24 -04:00
|
|
|
bash sshd.bash
|
2025-03-14 15:46:26 -04:00
|
|
|
|
2025-06-11 09:38:24 -04:00
|
|
|
cd ..
|
2025-03-14 15:46:26 -04:00
|
|
|
|
|
|
|
|
##
|
|
|
|
|
|
2025-06-11 09:38:24 -04:00
|
|
|
cd users/shinobi
|
2025-03-14 15:46:26 -04:00
|
|
|
|
2025-06-11 09:38:24 -04:00
|
|
|
bash provision.bash
|
2025-03-14 15:46:26 -04:00
|
|
|
|
2025-06-11 09:38:24 -04:00
|
|
|
cd ../..
|