Skip to content

Basic scripts for automating and executing common tasks on Windows and Linux systems. Built for simplicity.

Notifications You must be signed in to change notification settings

Stensel8/basic-scripts

Repository files navigation

About This Repository

This repository contains a collection of installer scripts that I use internally for automation with Terraform and Ansible. These scripts help me quickly deploy and switch between different versions of NGINX (as well as Docker, Ansible, Terraform, and Kubernetes) on various systems. The idea is to have a simple, one-command installation that can easily be updated or switched between versions when needed.


How to Run a Script

Run Directly

To run a script directly without saving it, use the following command in a terminal.

For example:

nginx_installer.sh

Default nginx (mainline)

curl -fsSL https://raw.githubusercontent.com/Stensel8/basic-scripts/main/nginx_installer.sh \
  | sudo bash

Stable

curl -fsSL https://raw.githubusercontent.com/Stensel8/basic-scripts/main/nginx_installer.sh \
  | sudo bash -s stable

Mainline

curl -fsSL https://raw.githubusercontent.com/Stensel8/basic-scripts/main/nginx_installer.sh \
  | sudo bash -s mainline

docker_installer.sh

curl -fsSL https://raw.githubusercontent.com/Stensel8/basic-scripts/refs/heads/main/docker_installer.sh | sudo bash

ansible_installer.sh

curl -fsSL https://raw.githubusercontent.com/Stensel8/basic-scripts/refs/heads/main/ansible_installer.sh | sudo bash

terraform_installer.sh

curl -fsSL https://raw.githubusercontent.com/Stensel8/basic-scripts/refs/heads/main/terraform_installer.sh | sudo bash

kubernetes_installer.sh

curl -fsSL https://raw.githubusercontent.com/Stensel8/basic-scripts/refs/heads/main/kubernetes_installer.sh | sudo bash

Enable-WinRM.ps1

irm https://raw.githubusercontent.com/Stensel8/basic-scripts/refs/heads/main/Enable-WinRM.ps1 | iex

About

Basic scripts for automating and executing common tasks on Windows and Linux systems. Built for simplicity.

Resources

Stars

Watchers

Forks