Merge branch 'master' of https://git.devuan.org/cyteen/automate
This commit is contained in:
commit
f7e7f73e84
|
|
@ -4,6 +4,7 @@ apt-get -y install tree
|
|||
apt-get -y install tmux
|
||||
apt-get -y install xclip
|
||||
apt-get -y install xsel
|
||||
apt-get -y install neofetch
|
||||
apt-get -y install sshpass
|
||||
apt-get -y install git
|
||||
apt-get -y install tig
|
||||
|
|
|
|||
|
|
@ -12,10 +12,15 @@ then
|
|||
elif [ "$dist" == 'ascii' ]
|
||||
then
|
||||
DIST='stretch'
|
||||
elif [ "$dist" == 'beowulf' ]
|
||||
then
|
||||
DIST='buster'
|
||||
else [ "$dist" == 'ceres' ]
|
||||
DIST='sid'
|
||||
fi
|
||||
|
||||
# FIXME: buster version no yet available
|
||||
DIST='stretch'
|
||||
OS=debian
|
||||
|
||||
DEST=/etc/apt/sources.list-available
|
||||
|
|
|
|||
|
|
@ -0,0 +1,13 @@
|
|||
#!/bin/bash
|
||||
apt-get install -y neofetch
|
||||
|
||||
mkdir -p /etc/update-motd.d
|
||||
cat > /etc/update-motd.d/20neofetch <<EOF
|
||||
#! /bin/sh
|
||||
|
||||
neofetch
|
||||
EOF
|
||||
|
||||
chmod a+x /etc/update-motd.d/20neofetch
|
||||
|
||||
run-parts /etc/update-motd.d/
|
||||
Loading…
Reference in New Issue