Files
linux.softwareshinobi.com/server/provision/provision.bash
Software Shinobi aa880afc23
All checks were successful
learn org at code.softwareshinobi.com/linux.softwareshinobi.com/pipeline/head This commit looks good
automated push from the terminal
2025-06-18 09:50:07 -04:00

49 lines
372 B
Bash

#!/bin/bash
##
## This script installs stuff
## to set up a linux server
## suitable for newbies.
##
## Before you go, check read around my blog!
##
## https://softwareshinobi.com
##
##
set -e;
set -x;
##
cd server
##
cd sshd/
bash sshd.bash
cd ..
##
cd nginx
bash nginx.bash
cd ..
##
cd ..
##
cd users/shinobi
bash provision.bash
cd ../..