mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-22 01:50:56 -07:00
Download debs at runtime, don't include them .
Former-commit-id: 5ce20813798818dae9808e3fb7c94bd35d5be97e Former-commit-id: c1b3dea0bda6a51f653280dcbcebf00559f892bf
This commit is contained in:
parent
9469816e5a
commit
9ffb070193
6 changed files with 16 additions and 4 deletions
|
@ -1 +0,0 @@
|
||||||
c6b5e0240d5f33a17f2bce6236d90d40ef47776e
|
|
15
debs/get-debs.sh
Executable file
15
debs/get-debs.sh
Executable file
|
@ -0,0 +1,15 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
#Discord
|
||||||
|
wget -O discord.deb "https://discordapp.com/api/download?platform=linux&format=deb"
|
||||||
|
|
||||||
|
#Resilio Sync
|
||||||
|
wget -O resilio.deb "https://download-cdn.resilio.com/2.6.3/Debian/resilio-sync_2.6.3-1_amd64.deb"
|
||||||
|
|
||||||
|
#VS Code (OSS)
|
||||||
|
wget -O code.deb "https://github.com/VSCodium/vscodium/releases/download/1.37.1/codium_1.37.1-1565952268_amd64.deb"
|
||||||
|
|
||||||
|
#Slack
|
||||||
|
wget -O slack.deb "https://downloads.slack-edge.com/linux_releases/slack-desktop-4.0.2-amd64.deb"
|
||||||
|
|
||||||
|
exit 0
|
|
@ -1 +0,0 @@
|
||||||
0d50e1dffa61bf7e229152885b69d9534b8fdfc7
|
|
|
@ -1 +0,0 @@
|
||||||
75f7c9b1d980339f22b7c9570a5ad1dba7cee625
|
|
|
@ -1 +0,0 @@
|
||||||
19976f5ccbe1c93b450bf4a0e564386145b0ccb4
|
|
1
runme.sh
1
runme.sh
|
@ -62,6 +62,7 @@ then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#This is the stuff that's common to both distros
|
#This is the stuff that's common to both distros
|
||||||
|
bash ./debs/get-debs.sh
|
||||||
dpkg-name ./debs/*.deb
|
dpkg-name ./debs/*.deb
|
||||||
rm -rf build
|
rm -rf build
|
||||||
mkdir build
|
mkdir build
|
||||||
|
|
Loading…
Reference in a new issue