From 247f6ce8ed12dc808311ece50d58a71683a36621 Mon Sep 17 00:00:00 2001 From: Alec Muffett Date: Tue, 1 Oct 2019 20:20:46 +0100 Subject: [PATCH] commit: fix and standardise permissions --- Makefile | 10 ++++++++++ eotk | 0 lib.d/do-configure.pl | 0 lib.d/do-obconfig.pl | 0 lib.d/dump-ssl-cert.sh | 0 lib.d/expand-config.pl | 0 lib.d/expand-template.pl | 0 lib.d/extract-public-key.sh | 0 lib.d/generate-bw-code.pl | 0 lib.d/generate-onion-key.sh | 0 lib.d/lint-expressions.pl | 0 lib.d/lint.pl | 0 lib.d/make-selfsigned-wildcard-ssl-cert.sh | 0 lib.d/onion-watcher.sh | 0 lib.d/test-expand-template.sh | 0 lib.d/validate-onion-key.py | 0 opt.d/build-nginx-on-raspbian-stretch.sh | 0 opt.d/build-tor-on-raspbian-stretch.sh | 0 opt.d/deprecated.d/build-nginx-on-raspbian-jessie.sh | 0 opt.d/deprecated.d/build-nginx-on-raspbian-stretch.sh | 0 opt.d/deprecated.d/build-tor-on-raspbian-jessie.sh | 0 .../deprecated.d/install-everything-on-ubuntu-16.04.sh | 0 .../install-onionbalance-on-raspbian-jessie.sh | 0 opt.d/install-everything-on-macos.sh | 0 opt.d/install-everything-on-ubuntu-18.04.sh | 0 opt.d/install-onionbalance-on-raspbian-stretch.sh | 0 tools.d/example-whackamole-v2.sh | 0 tools.d/example-whackamole.sh | 0 28 files changed, 10 insertions(+) mode change 100644 => 100755 eotk mode change 100644 => 100755 lib.d/do-configure.pl mode change 100644 => 100755 lib.d/do-obconfig.pl mode change 100644 => 100755 lib.d/dump-ssl-cert.sh mode change 100644 => 100755 lib.d/expand-config.pl mode change 100644 => 100755 lib.d/expand-template.pl mode change 100644 => 100755 lib.d/extract-public-key.sh mode change 100644 => 100755 lib.d/generate-bw-code.pl mode change 100644 => 100755 lib.d/generate-onion-key.sh mode change 100644 => 100755 lib.d/lint-expressions.pl mode change 100644 => 100755 lib.d/lint.pl mode change 100644 => 100755 lib.d/make-selfsigned-wildcard-ssl-cert.sh mode change 100644 => 100755 lib.d/onion-watcher.sh mode change 100644 => 100755 lib.d/test-expand-template.sh mode change 100644 => 100755 lib.d/validate-onion-key.py mode change 100644 => 100755 opt.d/build-nginx-on-raspbian-stretch.sh mode change 100644 => 100755 opt.d/build-tor-on-raspbian-stretch.sh mode change 100644 => 100755 opt.d/deprecated.d/build-nginx-on-raspbian-jessie.sh mode change 100644 => 100755 opt.d/deprecated.d/build-nginx-on-raspbian-stretch.sh mode change 100644 => 100755 opt.d/deprecated.d/build-tor-on-raspbian-jessie.sh mode change 100644 => 100755 opt.d/deprecated.d/install-everything-on-ubuntu-16.04.sh mode change 100644 => 100755 opt.d/deprecated.d/install-onionbalance-on-raspbian-jessie.sh mode change 100644 => 100755 opt.d/install-everything-on-macos.sh mode change 100644 => 100755 opt.d/install-everything-on-ubuntu-18.04.sh mode change 100644 => 100755 opt.d/install-onionbalance-on-raspbian-stretch.sh mode change 100644 => 100755 tools.d/example-whackamole-v2.sh mode change 100644 => 100755 tools.d/example-whackamole.sh diff --git a/Makefile b/Makefile index aaa554b..84d59c6 100644 --- a/Makefile +++ b/Makefile @@ -39,3 +39,13 @@ docker-clean: docker system prune --volumes docker image prune -a make docker-status + +################################################################## + +std-perms: + find . -type d | xargs chmod 755 + find . -type f | xargs chmod 644 + find . -type f -name "*.sh" | xargs chmod 755 + find . -type f -name "*.pl" | xargs chmod 755 + find . -type f -name "*.py" | xargs chmod 755 + chmod 755 eotk diff --git a/eotk b/eotk old mode 100644 new mode 100755 diff --git a/lib.d/do-configure.pl b/lib.d/do-configure.pl old mode 100644 new mode 100755 diff --git a/lib.d/do-obconfig.pl b/lib.d/do-obconfig.pl old mode 100644 new mode 100755 diff --git a/lib.d/dump-ssl-cert.sh b/lib.d/dump-ssl-cert.sh old mode 100644 new mode 100755 diff --git a/lib.d/expand-config.pl b/lib.d/expand-config.pl old mode 100644 new mode 100755 diff --git a/lib.d/expand-template.pl b/lib.d/expand-template.pl old mode 100644 new mode 100755 diff --git a/lib.d/extract-public-key.sh b/lib.d/extract-public-key.sh old mode 100644 new mode 100755 diff --git a/lib.d/generate-bw-code.pl b/lib.d/generate-bw-code.pl old mode 100644 new mode 100755 diff --git a/lib.d/generate-onion-key.sh b/lib.d/generate-onion-key.sh old mode 100644 new mode 100755 diff --git a/lib.d/lint-expressions.pl b/lib.d/lint-expressions.pl old mode 100644 new mode 100755 diff --git a/lib.d/lint.pl b/lib.d/lint.pl old mode 100644 new mode 100755 diff --git a/lib.d/make-selfsigned-wildcard-ssl-cert.sh b/lib.d/make-selfsigned-wildcard-ssl-cert.sh old mode 100644 new mode 100755 diff --git a/lib.d/onion-watcher.sh b/lib.d/onion-watcher.sh old mode 100644 new mode 100755 diff --git a/lib.d/test-expand-template.sh b/lib.d/test-expand-template.sh old mode 100644 new mode 100755 diff --git a/lib.d/validate-onion-key.py b/lib.d/validate-onion-key.py old mode 100644 new mode 100755 diff --git a/opt.d/build-nginx-on-raspbian-stretch.sh b/opt.d/build-nginx-on-raspbian-stretch.sh old mode 100644 new mode 100755 diff --git a/opt.d/build-tor-on-raspbian-stretch.sh b/opt.d/build-tor-on-raspbian-stretch.sh old mode 100644 new mode 100755 diff --git a/opt.d/deprecated.d/build-nginx-on-raspbian-jessie.sh b/opt.d/deprecated.d/build-nginx-on-raspbian-jessie.sh old mode 100644 new mode 100755 diff --git a/opt.d/deprecated.d/build-nginx-on-raspbian-stretch.sh b/opt.d/deprecated.d/build-nginx-on-raspbian-stretch.sh old mode 100644 new mode 100755 diff --git a/opt.d/deprecated.d/build-tor-on-raspbian-jessie.sh b/opt.d/deprecated.d/build-tor-on-raspbian-jessie.sh old mode 100644 new mode 100755 diff --git a/opt.d/deprecated.d/install-everything-on-ubuntu-16.04.sh b/opt.d/deprecated.d/install-everything-on-ubuntu-16.04.sh old mode 100644 new mode 100755 diff --git a/opt.d/deprecated.d/install-onionbalance-on-raspbian-jessie.sh b/opt.d/deprecated.d/install-onionbalance-on-raspbian-jessie.sh old mode 100644 new mode 100755 diff --git a/opt.d/install-everything-on-macos.sh b/opt.d/install-everything-on-macos.sh old mode 100644 new mode 100755 diff --git a/opt.d/install-everything-on-ubuntu-18.04.sh b/opt.d/install-everything-on-ubuntu-18.04.sh old mode 100644 new mode 100755 diff --git a/opt.d/install-onionbalance-on-raspbian-stretch.sh b/opt.d/install-onionbalance-on-raspbian-stretch.sh old mode 100644 new mode 100755 diff --git a/tools.d/example-whackamole-v2.sh b/tools.d/example-whackamole-v2.sh old mode 100644 new mode 100755 diff --git a/tools.d/example-whackamole.sh b/tools.d/example-whackamole.sh old mode 100644 new mode 100755