Copy over some fixes.

This commit is contained in:
Greyscale 2024-04-14 18:07:16 +02:00
parent 6a3b0b3d9c
commit 3b9c1b8c54
8 changed files with 49 additions and 14 deletions

View file

@ -1,13 +1,10 @@
#!/bin/bash
# shellcheck disable=SC1091
source /installers/config
${APT_GET} \
source /usr/local/lib/marshall_installer
title "Utils"
install \
inetutils-ping \
nano \
host \
curl \
wget \
unzip \
ca-certificates \
jq
unzip

View file

@ -0,0 +1,5 @@
#!/bin/bash
# shellcheck disable=SC1091
source /usr/local/lib/marshall_installer
add_ppa ppa:rmescandon/yq
install yq jq

View file

@ -1,2 +0,0 @@
#!/bin/bash
chmod +x /usr/bin/package-report

View file

@ -0,0 +1,4 @@
#!/bin/bash
# shellcheck disable=SC1091
source /usr/local/lib/marshall_installer
install htop btop cpulimit

View file

@ -0,0 +1,24 @@
#!/bin/bash
# shellcheck disable=SC1091,SC2164
source /usr/local/lib/marshall_installer
title "Installing version control tools"
# MB: This is all a bunch of hacky stuff because I really, really don't want to install perl.
(
install equivs
mkdir /tmp/equivs
cd /tmp/equivs
{
echo "Section: misc"
echo "Priority: optional"
echo "Standards-Version: 3.9.2"
echo "Package: perl-local"
echo "Provides: perl, liberror-perl"
} >perl-local
equivs-build perl-local 2>/dev/null 1>&2
dpkg -i perl-*.deb 2>/dev/null 1>&2
remove equivs
rm -rf /tmp/equivs
)
install git

View file

@ -0,0 +1,8 @@
#!/bin/bash
# shellcheck disable=SC1091
source /usr/local/lib/marshall_installer
install redis-tools
rm \
/usr/bin/redis-check-aof \
/usr/bin/redis-check-rdb \
/usr/bin/redis-benchmark

View file

@ -0,0 +1,4 @@
#!/bin/bash
# shellcheck disable=SC1091
source /usr/local/lib/marshall_installer
install "xtail"

View file

@ -1,5 +0,0 @@
#!/usr/bin/env bash
printf "Packages installed:\n KiloBytes\tPackage\n"
# shellcheck disable=SC2312
dpkg-query -W --showformat='${Installed-Size;10}\t${Package}\n' | sort -k1,1n | tac | head -n 5