automated terminal push
This commit is contained in:
36
provision/installs/docker.bash
Executable file
36
provision/installs/docker.bash
Executable file
@@ -0,0 +1,36 @@
|
||||
#!/bin/bash
|
||||
|
||||
sudo apt update;
|
||||
|
||||
sudo apt -y install ca-certificates curl;
|
||||
|
||||
## aptitude package dependency setup
|
||||
|
||||
sudo install -m 0755 -d /etc/apt/keyrings
|
||||
|
||||
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
|
||||
|
||||
sudo chmod a+r /etc/apt/keyrings/docker.asc
|
||||
|
||||
echo \
|
||||
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
|
||||
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
|
||||
tee /etc/apt/sources.list.d/docker.list > /dev/null
|
||||
|
||||
## docker compose install
|
||||
|
||||
sudo apt update
|
||||
|
||||
sudo apt purge -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin docker-compose docker docker.io
|
||||
|
||||
sudo apt install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
|
||||
|
||||
## run the sample container
|
||||
|
||||
reset;clear;
|
||||
|
||||
sudo docker run hello-world
|
||||
|
||||
echo
|
||||
echo "finished installing docker compose."
|
||||
echo
|
||||
21
provision/installs/gnomedownloader.bash
Executable file
21
provision/installs/gnomedownloader.bash
Executable file
@@ -0,0 +1,21 @@
|
||||
#!/bin/bash
|
||||
|
||||
##
|
||||
|
||||
echo "##"
|
||||
echo "## launch > python jms client (aventador JMS)"
|
||||
echo "##"
|
||||
|
||||
sudo apt update;
|
||||
|
||||
sudo apt install git -y
|
||||
|
||||
sudo apt install pip -y
|
||||
|
||||
pip install stomp.py
|
||||
|
||||
pip install selenium
|
||||
|
||||
## for rest situations
|
||||
|
||||
pip install requests
|
||||
17
provision/installs/hostname.bash
Executable file
17
provision/installs/hostname.bash
Executable file
@@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
|
||||
##
|
||||
|
||||
set -e;
|
||||
|
||||
set -x;
|
||||
|
||||
##
|
||||
|
||||
cat /etc/issue;
|
||||
|
||||
echo "Shinobi OS Sian 20.04" > /etc/issue;
|
||||
|
||||
cat /etc/issue;
|
||||
|
||||
##
|
||||
24
provision/installs/network.bash
Executable file
24
provision/installs/network.bash
Executable file
@@ -0,0 +1,24 @@
|
||||
#!/bin/bash
|
||||
|
||||
##
|
||||
## This script installs stuff
|
||||
## to set up a linux server
|
||||
## suitable for newbies.
|
||||
##
|
||||
## This linux server will be hosted under
|
||||
## linux.softwareshinobi.digital
|
||||
##
|
||||
## Before you go, check read around my blog!
|
||||
##
|
||||
## https://www.softwareshinobi.digital
|
||||
##
|
||||
|
||||
|
||||
## Install more software
|
||||
|
||||
apt-get install -y wget net-tools curl nslookup
|
||||
|
||||
|
||||
##
|
||||
|
||||
echo "fin."
|
||||
13
provision/installs/recycle/media.bash
Executable file
13
provision/installs/recycle/media.bash
Executable file
@@ -0,0 +1,13 @@
|
||||
|
||||
set -x
|
||||
|
||||
outputDIR=/tmp/media/backgrounds/
|
||||
|
||||
outputCNT=4
|
||||
|
||||
ls -lha /
|
||||
|
||||
pwd
|
||||
|
||||
cp /provision/media/Backgrounds/desktop.png /usr/share/lxqt/themes/light/simple_blue_widescreen.png
|
||||
|
||||
37
provision/installs/recycle/netbeans.bash
Executable file
37
provision/installs/recycle/netbeans.bash
Executable file
@@ -0,0 +1,37 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
set -x
|
||||
|
||||
##
|
||||
## create the apps dir and populate with unzipped netbeans content
|
||||
##
|
||||
|
||||
ls
|
||||
|
||||
mkdir /apps
|
||||
|
||||
cd /apps
|
||||
|
||||
##
|
||||
|
||||
ls
|
||||
|
||||
wget https://dlcdn.apache.org/netbeans/netbeans/21/netbeans-21-bin.zip
|
||||
|
||||
ls
|
||||
|
||||
mv netbeans-21-bin.zip netbeans.zip
|
||||
|
||||
ls
|
||||
|
||||
unzip netbeans.zip
|
||||
|
||||
ls
|
||||
|
||||
pwd
|
||||
|
||||
##
|
||||
##
|
||||
##
|
||||
14
provision/installs/software.bash
Executable file
14
provision/installs/software.bash
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
##
|
||||
|
||||
set -e;
|
||||
|
||||
set -x;
|
||||
|
||||
##
|
||||
sudo apt update
|
||||
|
||||
sudo apt install -y recordmydesktop kdenlive shotcut zip keepassx mpv dos2unix git filezilla openjdk-17-jdk maven remmina thunderbird openssh-server sudo vim sshpass
|
||||
|
||||
##
|
||||
13
provision/installs/sshserver.bash
Executable file
13
provision/installs/sshserver.bash
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
apt update;
|
||||
|
||||
apt install -y openssh-server;
|
||||
|
||||
apt install -y sudo;
|
||||
|
||||
service ssh restart;
|
||||
|
||||
##
|
||||
|
||||
echo "fin."
|
||||
114
provision/installs/startup/startup.sh
Executable file
114
provision/installs/startup/startup.sh
Executable file
@@ -0,0 +1,114 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -n "$VNC_PASSWORD" ]; then
|
||||
echo -n "$VNC_PASSWORD" > /.password1
|
||||
x11vnc -storepasswd $(cat /.password1) /.password2
|
||||
chmod 400 /.password*
|
||||
sed -i 's/^command=x11vnc.*/& -rfbauth \/.password2/' /etc/supervisor/conf.d/supervisord.conf
|
||||
export VNC_PASSWORD=
|
||||
fi
|
||||
|
||||
if [ -n "$X11VNC_ARGS" ]; then
|
||||
sed -i "s/^command=x11vnc.*/& ${X11VNC_ARGS}/" /etc/supervisor/conf.d/supervisord.conf
|
||||
fi
|
||||
|
||||
if [ -n "$OPENBOX_ARGS" ]; then
|
||||
sed -i "s#^command=/usr/bin/openbox\$#& ${OPENBOX_ARGS}#" /etc/supervisor/conf.d/supervisord.conf
|
||||
fi
|
||||
|
||||
if [ -n "$RESOLUTION" ]; then
|
||||
sed -i "s/1024x768/$RESOLUTION/" /usr/local/bin/xvfb.sh
|
||||
fi
|
||||
|
||||
USER=${USER:-root}
|
||||
HOME=/root
|
||||
if [ "$USER" != "root" ]; then
|
||||
echo "* enable custom user: $USER"
|
||||
useradd --create-home --shell /bin/bash --user-group --groups adm,sudo $USER
|
||||
if [ -z "$PASSWORD" ]; then
|
||||
echo " set default password to \"ubuntu\""
|
||||
PASSWORD=ubuntu
|
||||
fi
|
||||
HOME=/home/$USER
|
||||
echo "$USER:$PASSWORD" | chpasswd
|
||||
cp -r /root/{.config,.gtkrc-2.0,.asoundrc} ${HOME}
|
||||
chown -R $USER:$USER ${HOME}
|
||||
[ -d "/dev/snd" ] && chgrp -R adm /dev/snd
|
||||
fi
|
||||
sed -i -e "s|%USER%|$USER|" -e "s|%HOME%|$HOME|" /etc/supervisor/conf.d/supervisord.conf
|
||||
|
||||
# home folder
|
||||
if [ ! -x "$HOME/.config/pcmanfm/LXDE/" ]; then
|
||||
mkdir -p $HOME/.config/pcmanfm/LXDE/
|
||||
ln -sf /usr/local/share/doro-lxde-wallpapers/desktop-items-0.conf $HOME/.config/pcmanfm/LXDE/
|
||||
chown -R $USER:$USER $HOME
|
||||
fi
|
||||
|
||||
# nginx workers
|
||||
sed -i 's|worker_processes .*|worker_processes 1;|' /etc/nginx/nginx.conf
|
||||
|
||||
# nginx ssl
|
||||
if [ -n "$SSL_PORT" ] && [ -e "/etc/nginx/ssl/nginx.key" ]; then
|
||||
echo "* enable SSL"
|
||||
sed -i 's|#_SSL_PORT_#\(.*\)443\(.*\)|\1'$SSL_PORT'\2|' /etc/nginx/sites-enabled/default
|
||||
sed -i 's|#_SSL_PORT_#||' /etc/nginx/sites-enabled/default
|
||||
fi
|
||||
|
||||
# nginx http base authentication
|
||||
if [ -n "$HTTP_PASSWORD" ]; then
|
||||
echo "* enable HTTP base authentication"
|
||||
htpasswd -bc /etc/nginx/.htpasswd $USER $HTTP_PASSWORD
|
||||
sed -i 's|#_HTTP_PASSWORD_#||' /etc/nginx/sites-enabled/default
|
||||
fi
|
||||
|
||||
# dynamic prefix path renaming
|
||||
if [ -n "$RELATIVE_URL_ROOT" ]; then
|
||||
echo "* enable RELATIVE_URL_ROOT: $RELATIVE_URL_ROOT"
|
||||
sed -i 's|#_RELATIVE_URL_ROOT_||' /etc/nginx/sites-enabled/default
|
||||
sed -i 's|_RELATIVE_URL_ROOT_|'$RELATIVE_URL_ROOT'|' /etc/nginx/sites-enabled/default
|
||||
fi
|
||||
|
||||
# clearup
|
||||
PASSWORD=
|
||||
HTTP_PASSWORD=
|
||||
|
||||
touch /tmp/prince-trunks-has-returned
|
||||
|
||||
####
|
||||
|
||||
echo
|
||||
echo "hey!"
|
||||
echo
|
||||
|
||||
####
|
||||
|
||||
service ssh restart;
|
||||
|
||||
####
|
||||
|
||||
cd /
|
||||
|
||||
git clone https://code.yankee.embanet.online/yankee/yankee-gnome-fire-consumer.git
|
||||
|
||||
chmod 777 yankee-gnome-fire-consumer -R
|
||||
|
||||
cd yankee-gnome-fire-consumer
|
||||
|
||||
bash provision.bash
|
||||
|
||||
pppwd=`pwd`
|
||||
|
||||
echo " dir / "$pppwd
|
||||
|
||||
echo "python3 $pppwd/consumer.py" | at now + 1 minutes
|
||||
|
||||
##echo "/yankee/go.sh" | at now + 10 minutes
|
||||
|
||||
####
|
||||
|
||||
|
||||
####
|
||||
|
||||
exec /bin/tini -- supervisord -n -c /etc/supervisor/supervisord.conf
|
||||
|
||||
touch /tmp/prince-trunks-has-returned-after
|
||||
BIN
provision/media/Backgrounds/desktop.png
Normal file
BIN
provision/media/Backgrounds/desktop.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 275 KiB |
BIN
provision/media/Backgrounds/valorantsoftware.png
Executable file
BIN
provision/media/Backgrounds/valorantsoftware.png
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 1.0 MiB |
Reference in New Issue
Block a user