Skip to content

Commit

Permalink
Lançamento da versão 1.0.5 - Correção na permissão padrão definida pa…
Browse files Browse the repository at this point in the history
…ra o diretório de temas do Burg bootloader
  • Loading branch information
gustavosotnas committed Mar 30, 2015
1 parent d648343 commit 7fc6f63
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion quick-deb-builder/DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: quick-deb-builder
Version: 1.0.4
Version: 1.0.5
Section: devel
Maintainer: Gustavo Moraes <gustavosotnas1@gmail.com>
Homepage: https://github.com/gustavosotnas/quick-deb-builder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# 100 = "No" para fechar

APP_NAME="Quick DEB Builder"
VERSION="1.0.4"
VERSION="1.0.5"
APP_AUTHOR="Copyright (C) 2015 Gustavo Moraes http://about.me/gustavosotnas"
HELP_DESCRIPTION_TEXT="$APP_NAME is a simple tool that quickly creates .deb packages from an existing build tree. It automatically solves most common permission problems for files and directories in creating .deb packages."

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#set -u; # Bash will exit the script if you try to use an uninitialised variable

APP_NAME="Quick DEB Builder"
VERSION="1.0.4"
VERSION="1.0.5"
APP_AUTHOR="Copyright (C) 2015 Gustavo Moraes http://about.me/gustavosotnas"
HELP_DESCRIPTION_TEXT="Select a folder path with a \"debian-like\" directory structure and an output folder path and press OK below:"
CURRENT_USER="$2"
Expand Down Expand Up @@ -155,7 +155,7 @@ dcreate() # Procedimento de criação do pacote deb com resolução de problemas
# Passo 7: Verificando e modificando as permissões do diretório de temas do "BURG bootloader"
generateProgressNum;
echo "# Verifying and modifying permissions of the BURG bootloader themes directory";
2>/dev/null find /tmp/deb_packing/boot/burg/themes/ -type d | xargs chmod 700 2>/dev/null; # Dá permissões rwx------ para a pasta themes e seus subdiretórios
2>/dev/null find /tmp/deb_packing/boot/burg/themes/ -type d | xargs chmod 755 2>/dev/null; # Dá permissões rwxr-xr-x para a pasta themes e seus subdiretórios

# Passo 8: Verificando e modificando as permissões dos arquivos de sudoers na pasta

Expand Down

0 comments on commit 7fc6f63

Please sign in to comment.