testing more
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
|
||||
exit 0
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# install bash and only bash so that the setup scripts can assume bash
|
||||
apt update
|
||||
apt install -y bash
|
||||
@@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
apt update
|
||||
apt -y install ntpdate
|
||||
ntpdate time.apple.com
|
||||
@@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
|
||||
PKGS="$(cat $DIR/packages.txt)"
|
||||
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
apt update
|
||||
|
||||
apt upgrade -y
|
||||
|
||||
for PKG in $PKGS ; do
|
||||
apt install -y $PKG
|
||||
done
|
||||
@@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
apt update
|
||||
apt -y install command-not-found
|
||||
apt-file update
|
||||
update-command-not-found
|
||||
@@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
apt update && apt install -y curl
|
||||
|
||||
KEY_URL="https://sneak.cloud/authorized_keys"
|
||||
curl -fLo /root/.ssh/authorized_keys --create-dirs $KEY_URL && \
|
||||
passwd -d root
|
||||
|
||||
curl -fLo /home/pi/.ssh/authorized_keys --create-dirs $KEY_URL && \
|
||||
passwd -d pi
|
||||
|
||||
chown -R pi:pi /home/pi/.ssh
|
||||
@@ -0,0 +1,40 @@
|
||||
apt-transport-https
|
||||
bash-completion
|
||||
build-essential
|
||||
byobu
|
||||
ca-certificates
|
||||
command-not-found
|
||||
cryptsetup-bin
|
||||
curl
|
||||
daemontools
|
||||
dirmngr
|
||||
dnsutils
|
||||
gnupg-agent
|
||||
gnupg2
|
||||
golang-go
|
||||
haveged
|
||||
inetutils-ping
|
||||
iptables-persistent
|
||||
iptraf-ng
|
||||
jq
|
||||
less
|
||||
lsof
|
||||
man-db
|
||||
mosh
|
||||
nmap
|
||||
ntp
|
||||
opensc
|
||||
pbzip2
|
||||
pcscd
|
||||
pinentry-curses
|
||||
pv
|
||||
rsync
|
||||
runit
|
||||
runit-systemd
|
||||
scdaemon
|
||||
screen
|
||||
socat
|
||||
software-properties-common
|
||||
usbmount
|
||||
vim
|
||||
wget
|
||||
Reference in New Issue
Block a user