This repository has been archived by the owner on Apr 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* (#126) Fix Rust not being installed; switch to Bash for build scripts; * (#128) Set `pull.rebase` to `false` in Git config; * (#130) Remove an extra line in the output of the GPG user-script; * (#131) Delete the Makefile; * (#133) Bump the version.
- Loading branch information
Showing
34 changed files
with
261 additions
and
381 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
|
||
echo -e '\n\e[1;36mInstalling the browser:\e[0m' | ||
|
||
echo -e '\e[1;36m> Updating lists of packages...\e[0m' | ||
apt-get update >/dev/null | ||
|
||
echo -e '\e[1;36m> Installing Midori...\e[0m' | ||
apt-get install -y --no-install-recommends midori >/dev/null | ||
|
||
echo -e '\e[1;36m> Cleaning the `apt` cache...\e[0m\n' | ||
rm -rf /var/lib/apt/lists/* |
This file was deleted.
Oops, something went wrong.
54 changes: 27 additions & 27 deletions
54
...cripts/root/install-essential-packages.sh → ...ipts/root/install-essential-packages.bash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,81 +1,81 @@ | ||
#!/bin/sh | ||
#!/bin/bash | ||
|
||
echo '\n\e[1;36mInstalling essential packages:\e[0m' | ||
echo -e '\n\e[1;36mInstalling essential packages:\e[0m' | ||
|
||
echo '\e[1;36m> Updating lists of packages...\e[0m' | ||
echo -e '\e[1;36m> Updating lists of packages...\e[0m' | ||
apt-get update >/dev/null | ||
|
||
echo '\e[1;36m> Installing `apt-utils`...\e[0m' | ||
echo -e '\e[1;36m> Installing `apt-utils`...\e[0m' | ||
apt-get -y install apt-utils >/dev/null 2>&1 | ||
|
||
echo '\e[1;36m> Installing `apt-transport-https`...\e[0m' | ||
echo -e '\e[1;36m> Installing `apt-transport-https`...\e[0m' | ||
apt-get install -y --no-install-recommends apt-transport-https >/dev/null | ||
|
||
echo '\e[1;36m> Installing `build-essential`...\e[0m' | ||
echo -e '\e[1;36m> Installing `build-essential`...\e[0m' | ||
apt-get install -y --no-install-recommends build-essential >/dev/null | ||
|
||
echo '\e[1;36m> Installing `dialog`...\e[0m' | ||
echo -e '\e[1;36m> Installing `dialog`...\e[0m' | ||
apt-get install -y --no-install-recommends dialog >/dev/null | ||
|
||
echo '\e[1;36m> Installing `dumb-init`...\e[0m' | ||
echo -e '\e[1;36m> Installing `dumb-init`...\e[0m' | ||
apt-get install -y --no-install-recommends dumb-init >/dev/null | ||
|
||
echo '\e[1;36m> Installing `htop`...\e[0m' | ||
echo -e '\e[1;36m> Installing `htop`...\e[0m' | ||
apt-get install -y --no-install-recommends htop >/dev/null | ||
|
||
echo '\e[1;36m> Installing `ca-certificates`...\e[0m' | ||
echo -e '\e[1;36m> Installing `ca-certificates`...\e[0m' | ||
apt-get install -y --no-install-recommends ca-certificates >/dev/null | ||
|
||
echo '\e[1;36m> Installing `git`...\e[0m' | ||
echo -e '\e[1;36m> Installing `git`...\e[0m' | ||
apt-get install -y --no-install-recommends git >/dev/null | ||
|
||
echo '\e[1;36m> Installing `make`...\e[0m' | ||
echo -e '\e[1;36m> Installing `make`...\e[0m' | ||
apt-get install -y --no-install-recommends make >/dev/null | ||
|
||
echo '\e[1;36m> Installing `screen`...\e[0m' | ||
echo -e '\e[1;36m> Installing `screen`...\e[0m' | ||
apt-get install -y --no-install-recommends screen >/dev/null | ||
|
||
echo '\e[1;36m> Installing `ncdu`...\e[0m' | ||
echo -e '\e[1;36m> Installing `ncdu`...\e[0m' | ||
apt-get install -y --no-install-recommends ncdu >/dev/null | ||
|
||
echo '\e[1;36m> Installing `zip` and `unzip`...\e[0m' | ||
echo -e '\e[1;36m> Installing `zip` and `unzip`...\e[0m' | ||
apt-get install -y --no-install-recommends zip unzip >/dev/null | ||
|
||
echo '\e[1;36m> Installing `nano`...\e[0m' | ||
echo -e '\e[1;36m> Installing `nano`...\e[0m' | ||
apt-get install -y --no-install-recommends nano >/dev/null | ||
|
||
echo '\e[1;36m> Installing `less`...\e[0m' | ||
echo -e '\e[1;36m> Installing `less`...\e[0m' | ||
apt-get install -y --no-install-recommends less >/dev/null | ||
|
||
echo '\e[1;36m> Installing `wget`...\e[0m' | ||
echo -e '\e[1;36m> Installing `wget`...\e[0m' | ||
apt-get install -y --no-install-recommends wget >/dev/null | ||
|
||
echo '\e[1;36m> Installing `curl`...\e[0m' | ||
echo -e '\e[1;36m> Installing `curl`...\e[0m' | ||
apt-get install -y --no-install-recommends curl >/dev/null | ||
|
||
echo '\e[1;36m> Installing `gnupg-agent`...\e[0m' | ||
echo -e '\e[1;36m> Installing `gnupg-agent`...\e[0m' | ||
apt-get install -y --no-install-recommends gnupg-agent >/dev/null | ||
|
||
echo '\e[1;36m> Installing `sudo`...\e[0m' | ||
echo -e '\e[1;36m> Installing `sudo`...\e[0m' | ||
wget --no-check-certificate https://github.com/sudo-project/sudo/releases/download/SUDO_1_9_1/sudo_1.9.1-1_ubu2004_amd64.deb >/dev/null 2>&1 | ||
apt-get -y install ./sudo_1.9.1-1_ubu2004_amd64.deb >/dev/null | ||
rm sudo_1.9.1-1_ubu2004_amd64.deb | ||
|
||
echo '\e[1;36m> Installing `ssh`...\e[0m' | ||
echo -e '\e[1;36m> Installing `ssh`...\e[0m' | ||
apt-get install -y --no-install-recommends ssh >/dev/null | ||
|
||
echo '\e[1;36m> Installing `keychain`...\e[0m' | ||
echo -e '\e[1;36m> Installing `keychain`...\e[0m' | ||
apt-get install -y --no-install-recommends keychain >/dev/null | ||
|
||
echo '\e[1;36m> Installing `locales`...\e[0m' | ||
echo -e '\e[1;36m> Installing `locales`...\e[0m' | ||
apt-get install -y --no-install-recommends locales >/dev/null | ||
locale-gen ru_RU.UTF-8 >/dev/null | ||
|
||
echo '\e[1;36m> Installing `language-pack-en-base`...\e[0m' | ||
echo -e '\e[1;36m> Installing `language-pack-en-base`...\e[0m' | ||
apt-get install -y --no-install-recommends language-pack-en-base >/dev/null | ||
|
||
echo '\e[1;36m> Installing `software-properties-common`...\e[0m' | ||
echo -e '\e[1;36m> Installing `software-properties-common`...\e[0m' | ||
apt-get install -y --no-install-recommends software-properties-common >/dev/null | ||
|
||
echo '\e[1;36m> Cleaning the `apt` cache...\e[0m\n' | ||
echo -e '\e[1;36m> Cleaning the `apt` cache...\e[0m\n' | ||
rm -rf /var/lib/apt/lists/* |
Oops, something went wrong.