Skip to content

Commit 87c59d8

Browse files
committed
2 parents 5d368d6 + 9e0eda5 commit 87c59d8

File tree

10 files changed

+34
-3
lines changed

10 files changed

+34
-3
lines changed

Apps/IDEs/phpstorm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ phpstorm_postconfiguracion() {
7575
}
7676

7777
phpstorm_instalador() {
78-
local version='PhpStorm-2019.3.4'
78+
local version='PhpStorm-2020.1.2'
7979

8080
echo -e "$VE Comenzando instalación de$RO PhpStorm$CL"
8181

Apps/IDEs/pycharm_pro.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,13 @@ pycharm_instalar() {
5353
echo -e "$VE Extrayendo IDE$CL"
5454
cd "$WORKSCRIPT/tmp/" || return 0
5555
tar -zxf "${1}.tar.gz" 2>> /dev/null
56+
5657
local directorio="$(ls | grep -E ^pycharm.+[^\.tar\.gz]$)"
57-
ls
58+
5859
if [[ "$directorio" != '' ]]; then
5960
mv "$WORKSCRIPT/tmp/$directorio" "$HOME/.local/opt/pycharm"
6061
fi
62+
6163
cd "$WORKSCRIPT" || exit 1
6264
}
6365

@@ -72,7 +74,7 @@ pycharm_postconfiguracion() {
7274
}
7375

7476
pycharm_pro_instalador() {
75-
local version='pycharm-professional-2020.1.1'
77+
local version='pycharm-professional-2020.1.2'
7678

7779
echo -e "$VE Comenzando instalación de$RO PyCharm$CL"
7880

Repositorios/debian/comunes.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,12 @@ comunes_agregar_llaves() {
130130

131131
## Any Desk
132132
wget -qO - https://keys.anydesk.com/repos/DEB-GPG-KEY | sudo apt-key add -
133+
134+
## GO CD (Desarrollo continuo)
135+
curl https://download.gocd.org/GOCD-GPG-KEY.asc | sudo apt-key add -
136+
137+
## Jenkins
138+
wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add -
133139
}
134140

135141
##
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
########################################################
2+
## GOCD ##
3+
########################################################
4+
deb https://download.gocd.org /
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
########################################################
2+
## JENKINS ##
3+
########################################################
4+
5+
deb https://pkg.jenkins.io/debian-stable binary/

Software-Lists/debian/Basico/terminal.lst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ tmux-plugin-manager
1010
powerline
1111
xterm
1212
colord
13+
pssh
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
editorconfig
22
pandoc
33
shellcheck
4+
gitlab-cli
5+
gitk
6+
git-gui
7+
git-ftp

Software-Lists/debian/Vps/basico.lst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
git
2+
gitlab-cli
3+
pssh
4+
ssh

VPS/firewall.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
mainFirewall() {
55
## Comprobar que existe firewall-cmd
66

7+
sudo systemctl start firewalld
8+
79
## Permito ssh
810
sudo firewall-cmd --zone=public --add-port=22/tcp --permanent
911

main-vps.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ fi
4343
chown web:web -R /home/web/debian-developer-conf
4444
cd /home/web/debian-developer-conf || exit
4545

46+
## TODO → Con el "all" ya es suficiente, pero es necesario comprobar que exista
47+
## la línea ya que al volver a ejecutar script o en algunos servidores ya se
48+
## encuentra y produce problemas después con firewalld u otros cortafuegos.
49+
4650
# Desactivar ipv6 por completo
4751
echo 'net.ipv6.conf.all.disable_ipv6=1' >> '/etc/sysctl.conf'
4852
echo 'net.ipv6.conf.default.disable_ipv6=1' >> '/etc/sysctl.conf'

0 commit comments

Comments
 (0)