Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/noam-alum/autopilot
Automate the setup of a new system with ease, AutoPilot - it's simple.
https://github.com/noam-alum/autopilot
bash bash-script bash-scripting script shell
Last synced: about 1 month ago
JSON representation
Automate the setup of a new system with ease, AutoPilot - it's simple.
- Host: GitHub
- URL: https://github.com/noam-alum/autopilot
- Owner: Noam-Alum
- License: mit
- Created: 2024-07-30T17:56:52.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-03T10:20:57.000Z (2 months ago)
- Last Synced: 2024-10-13T03:22:11.273Z (about 1 month ago)
- Topics: bash, bash-script, bash-scripting, script, shell
- Language: Shell
- Homepage: https://docs.alum.sh/AutoPilot/Introduction.html
- Size: 102 KB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# AutoPilot It's simple.
![made-with-bash](https://img.shields.io/badge/Made%20with-Bash-blue?style=plastic&labelColor=%237b7b7b&color=%23003972)
[![made-with-utils.sh](https://img.shields.io/badge/Made%20with-utils.sh-blue?style=plastic&labelColor=%237b7b7b&color=%23003972)](https://github.com/Noam-Alum/utils.sh)
![version](https://img.shields.io/badge/Version-1.0.0-blue?style=plastic&labelColor=%2390ee90&color=%23003972)**AutoPilot** is a free to use [bash](https://en.wikipedia.org/wiki/Bash_(Unix_shell)) script (for both **Debian** and **RHEL** related operating systems) written by [Noam Alum](https://www.linkedin.com/in/noam-alum/) meant to automate the process of setting up a new system.
It uses [YAML](https://en.wikipedia.org/wiki/YAML) for its configuration file, so it is very easy to set up, and you can create numerous configuration files for different occasions. (I like to call them *"Profiles"* 🙃)> [!NOTE]
> Supports **Debian** and **RHEL** related systems! 💪![AutoPilotBanner](https://docs.alum.sh/images/AutoPilot-Logo.png)
> [!NOTE]
> This script relies heavily on a collection of functions, `utils.sh`.
>
> https://github.com/Noam-Alum/AutoPilot/blob/8a05103fdd2deaaf2c534efd20c3c6fe5dbd2e04/AutoPilot.sh#L11-L13
>
>
>
> [![ReadMe Card](https://github-readme-stats.vercel.app/api/pin?username=Noam-Alum&repo=utils.sh&title_color=fff&icon_color=f9f9f9&text_color=9f9f9f&bg_color=151515)](https://github.com/Noam-Alum/utils.sh)
---
## Installation:
- **Git clone:**
```sh
git clone https://github.com/Noam-Alum/AutoPilot.git
```- **wget:**
```sh
wget https://github.com/Noam-Alum/AutoPilot/archive/refs/heads/main.zip
unzip main.zip
```## Usage:
> [!WARNING]
> To use the script you first need to conduct a configuration file, instructions for this are available [here](https://docs.alum.sh/AutoPilot/HowTo/Create-a-configuration-file.html).```sh
sudo ./AutoPilot.sh configuration.yaml
```---
## Configuration
**AutoPilot** uses *YAML* for its configuration file, for example:
```yaml
SELinux: DisabledInstalled_packages:
- name: FireJail
type: Pm
source: firejail
- name: Discord
type: Pkg
source: "https://discord.com/api/download?platform=linux&format=deb"
- name: NVIM
type: Sh
source: "https://docs.alum.sh/files/NVIM-install.sh"
- name: Chrome
type: Pkg
source: https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
- name: git
type: Pm
source: gitRun_Lines:
- echo "Hello"
- echo "Hello world"Plugins:
- name: FireJail
script: plugins/firejail
- name: make_backup
script: plugins/make_backupNetwork_Configuration:
- nic: tun0
ip: 192.168.2.14/24
gateway: 192.168.2.1
dns: 8.8.8.8,8.4.8.4
- nic: eth0
ip: "%DHCP%"
gateway: "%DHCP%"
dns: "%DHCP%"
```> **For detailed documentation on every directive:**
>
> [![Button Component](https://readme-components.vercel.app/api?component=button&text=Documentation)](https://docs.alum.sh/AutoPilot/Introduction.html)
---
## Contribute
Any contribution would be greatly appreciated, refer to [this page](CONTRIBUTING.md) for detailed guides on how to contribute.
> [!NOTE]
> **If you want to request a new feature, you can do that [here](https://github.com/Noam-Alum/AutoPilot/issues/new?assignees=Noam-Alum&labels=feature+request&projects=&template=feature-request.md&title=Feature+request+%7C+%5Bfeature+request+short+description%5D).**