mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 22:46:22 +00:00
hotfixes via make
en realidad deberíamos hacer esto vía git pero hay que hacer algunos cambios en el dockerfile para eso
This commit is contained in:
parent
c2c179c8e7
commit
f2683c3a5a
1 changed files with 6 additions and 3 deletions
9
Makefile
9
Makefile
|
@ -46,9 +46,6 @@ save:
|
||||||
date +%F | xargs git tag -f
|
date +%F | xargs git tag -f
|
||||||
@echo -e "\a"
|
@echo -e "\a"
|
||||||
|
|
||||||
load:
|
|
||||||
ssh root@sutty.nl sh -c "gunzip -c sutty.latest.gz | docker load"
|
|
||||||
|
|
||||||
# Crear el directorio donde se almacenan las gemas binarias
|
# Crear el directorio donde se almacenan las gemas binarias
|
||||||
../gems/:
|
../gems/:
|
||||||
mkdir -p $@
|
mkdir -p $@
|
||||||
|
@ -99,6 +96,12 @@ ota: assets
|
||||||
sudo chgrp -R 82 public/
|
sudo chgrp -R 82 public/
|
||||||
rsync -av public/ athshe:/srv/sutty/srv/http/data/_public/
|
rsync -av public/ athshe:/srv/sutty/srv/http/data/_public/
|
||||||
|
|
||||||
|
# Hotfixes
|
||||||
|
ota-rb:
|
||||||
|
umask 022; git format-patch $(commit)
|
||||||
|
scp ./0*.patch root@athshe.sutty.nl:/tmp/
|
||||||
|
rm ./0*.patch
|
||||||
|
|
||||||
/etc/hosts: always
|
/etc/hosts: always
|
||||||
@echo "Chequeando si es necesario agregar el dominio local $(SUTTY)"
|
@echo "Chequeando si es necesario agregar el dominio local $(SUTTY)"
|
||||||
@grep -q " $(SUTTY)$$" $@ || echo -e "127.0.0.1 $(SUTTY)\n::1 $(SUTTY)" | sudo tee -a $@
|
@grep -q " $(SUTTY)$$" $@ || echo -e "127.0.0.1 $(SUTTY)\n::1 $(SUTTY)" | sudo tee -a $@
|
||||||
|
|
Loading…
Reference in a new issue