Skip to content

Cyclenerd/postinstall

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

postinstall.sh

ShellCheck Ubuntu 20.04 LTS

Bash Script to automate post-installation steps. Helps to install packages on different operating systems:

  • Alpine Linux
  • Android (Termux)
  • Apple macOS
  • Arch Linux
  • CentOS
  • Debian
  • Fedora
  • FreeBSD
  • Haiku
  • Mageia
  • NetBSD
  • OpenBSD
  • OpenWRT
  • Puppy
  • RedHat
  • RockyLinux
  • Slackware
  • SUSE
  • Ubuntu
  • Windows (Cygwin)

Overview

postinstall.sh is simple bash shell script which in turn generates scripts. The generation depends on the operating system and type of installation. The templates that are included in the generation can be stored in the file system or on a web server. This can also be your GitHub repository. Just fork this repository and edit it according to your needs.

postinstall.sh is not a configuration management system. If you want to install many servers automatically, you should look at ansible. But if you want to quickly reinstall your laptop or Raspberry Pi, postinstall.sh can help you.

Please check the Wiki for more information.

Installation

Download:

curl -O "https://raw.githubusercontent.com/Cyclenerd/postinstall/master/postinstall.sh"

Alternative download with short URL:

curl -fL http://bit.ly/get_postinstall -o postinstall.sh

Create a package lists and scripts as explained in this repository or in the Wiki.

Example:

mkdir install
cd install
vi packages.list

Run as root:

bash postinstall.sh -b install

Usage

Usage: postinstall.sh [-t <TYPE>] [-b <BASE>] [-h]:
        [-t <TYPE>]      sets the type of installation (default: server)
        [-b <BASE>]      sets the base url or dir (default: https://raw.githubusercontent.com/Cyclenerd/postinstall/master/base)
        [-h]             displays help (this message)

Example: postinstall.sh or postinstall.sh -t workstation

Screenshot

WSL

Program Flow

  • Determine operating system and architecture
  • Check package manager and requirements
  • Generate script to run before and after installation and list of packages to install
  • Install packages

Requirements

Only bash, curl, tput (ncurses-utils) and a package manager for the respective operating system:

  • Alpine Linux β†’ apk
  • Apple macOS β†’ port or brew
  • Arch Linux β†’ pacman
  • Cygwin β†’ apt-cyg
  • Debian / Ubuntu β†’ apt-get
  • FreeBSD β†’ pkg
  • Haiku β†’ pkgman
  • Mageia β†’ urpmi
  • NetBSD β†’ pkg_add
  • OpenBSD β†’ pkg_add
  • OpenWRT β†’ opkg
  • Puppy β†’ pkg (https://gitlab.com/sc0ttj/Pkg)
  • Red Hat / Fedora / CentOS β†’ dnf or yum
  • Slackware β†’ slackpkg
  • SUSE / openSUSE β†’ zypper
  • Termux β†’ pkg

TODO

  • More and better documentation
  • Support for even more operating systems and package managers

Help is welcome πŸ‘

License

GNU Public License version 3. Please feel free to fork and modify this on GitHub (https://github.com/Cyclenerd/postinstall).