Skip to content

Commit 26c4fb5

Browse files
authored
Merge pull request #266 from devilbox/release-0.149
Release 0.149
2 parents 8e71550 + 393ecc5 commit 26c4fb5

19 files changed

+196
-0
lines changed

.ansible/group_vars/all/work.yml

+7
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ tools_enabled:
2222
- linkcheck
2323
- mdlint
2424
- mupdf-tools
25+
- net-tools
2526
- phalcon-devtools
2627
- php-cs-fixer
2728
- phpcbf
@@ -337,6 +338,12 @@ tools_available:
337338
all:
338339
type: apt
339340
package: mupdf-tools
341+
net-tools:
342+
disabled: []
343+
check: netstat --version | grep net-tools || (netstat --version; false)
344+
all:
345+
type: apt
346+
package: net-tools
340347
phalcon-devtools:
341348
disabled: [5.2, 5.3, 5.4, 8.2]
342349
check: |

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44
## Unreleased
55

66

7+
## Release 0.149
8+
9+
### Added
10+
- Added `net-tools` package
11+
12+
713
## Release 0.148
814

915
### Added

Dockerfiles/work/Dockerfile-5.2

+12
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,7 @@ RUN set -eux \
242242
git \
243243
jq \
244244
mupdf-tools \
245+
net-tools \
245246
openssh-client \
246247
rsync \
247248
shellcheck \
@@ -360,6 +361,11 @@ RUN set -eux \
360361
\
361362
&& true
362363
364+
# -------------------- (apt) net-tools --------------------
365+
RUN set -eux \
366+
&& netstat --version | grep net-tools || (netstat --version; false) \
367+
&& true
368+
363369
# -------------------- (custom) phpcbf --------------------
364370
RUN set -eux \
365371
&& PHPCBF_URL="https://github.com/squizlabs/PHP_CodeSniffer/releases/download/2.9.0/phpcbf.phar" \
@@ -523,6 +529,7 @@ RUN set -eux \
523529
git \
524530
jq \
525531
mupdf-tools \
532+
net-tools \
526533
openssh-client \
527534
rsync \
528535
shellcheck \
@@ -651,6 +658,11 @@ RUN set -eux \
651658
\
652659
&& true
653660
661+
# -------------------- (apt) net-tools --------------------
662+
RUN set -eux \
663+
&& netstat --version | grep net-tools || (netstat --version; false) \
664+
&& true
665+
654666
# -------------------- (custom) phpcbf --------------------
655667
RUN set -eux \
656668
&& phpcbf --version | grep -E 'version [0-9][.0-9]+' || (phpcbf --version; false) \

Dockerfiles/work/Dockerfile-5.3

+12
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,7 @@ RUN set -eux \
277277
git \
278278
jq \
279279
mupdf-tools \
280+
net-tools \
280281
openssh-client \
281282
rsync \
282283
shellcheck \
@@ -395,6 +396,11 @@ RUN set -eux \
395396
\
396397
&& true
397398
399+
# -------------------- (apt) net-tools --------------------
400+
RUN set -eux \
401+
&& netstat --version | grep net-tools || (netstat --version; false) \
402+
&& true
403+
398404
# -------------------- (custom) php-cs-fixer --------------------
399405
RUN set -eux \
400406
&& PHP_CS_FIXER_URL="https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.2.19/php-cs-fixer.phar" \
@@ -596,6 +602,7 @@ RUN set -eux \
596602
git \
597603
jq \
598604
mupdf-tools \
605+
net-tools \
599606
openssh-client \
600607
rsync \
601608
shellcheck \
@@ -724,6 +731,11 @@ RUN set -eux \
724731
\
725732
&& true
726733
734+
# -------------------- (apt) net-tools --------------------
735+
RUN set -eux \
736+
&& netstat --version | grep net-tools || (netstat --version; false) \
737+
&& true
738+
727739
# -------------------- (custom) php-cs-fixer --------------------
728740
RUN set -eux \
729741
&& php-cs-fixer --version 2>&1 | grep -E 'Fixer\s+(version\s*)?[-_.0-9]+\s+' || (php-cs-fixer --version; false) \

Dockerfiles/work/Dockerfile-5.4

+12
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,7 @@ RUN set -eux \
277277
git \
278278
jq \
279279
mupdf-tools \
280+
net-tools \
280281
openssh-client \
281282
rsync \
282283
shellcheck \
@@ -418,6 +419,11 @@ RUN set -eux \
418419
\
419420
&& true
420421
422+
# -------------------- (apt) net-tools --------------------
423+
RUN set -eux \
424+
&& netstat --version | grep net-tools || (netstat --version; false) \
425+
&& true
426+
421427
# -------------------- (custom) php-cs-fixer --------------------
422428
RUN set -eux \
423429
&& PHP_CS_FIXER_URL="https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.2.19/php-cs-fixer.phar" \
@@ -619,6 +625,7 @@ RUN set -eux \
619625
git \
620626
jq \
621627
mupdf-tools \
628+
net-tools \
622629
openssh-client \
623630
rsync \
624631
shellcheck \
@@ -762,6 +769,11 @@ RUN set -eux \
762769
\
763770
&& true
764771
772+
# -------------------- (apt) net-tools --------------------
773+
RUN set -eux \
774+
&& netstat --version | grep net-tools || (netstat --version; false) \
775+
&& true
776+
765777
# -------------------- (custom) php-cs-fixer --------------------
766778
RUN set -eux \
767779
&& php-cs-fixer --version 2>&1 | grep -E 'Fixer\s+(version\s*)?[-_.0-9]+\s+' || (php-cs-fixer --version; false) \

Dockerfiles/work/Dockerfile-5.5

+12
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,7 @@ RUN set -eux \
277277
git \
278278
jq \
279279
mupdf-tools \
280+
net-tools \
280281
openssh-client \
281282
rsync \
282283
shellcheck \
@@ -434,6 +435,11 @@ RUN set -eux \
434435
\
435436
&& true
436437
438+
# -------------------- (apt) net-tools --------------------
439+
RUN set -eux \
440+
&& netstat --version | grep net-tools || (netstat --version; false) \
441+
&& true
442+
437443
# -------------------- (composer) phalcon-devtools --------------------
438444
RUN set -eux \
439445
&& if find /usr/local/lib/php/extensions/ -name phalcon.so | grep phalcon; then \
@@ -674,6 +680,7 @@ RUN set -eux \
674680
git \
675681
jq \
676682
mupdf-tools \
683+
net-tools \
677684
openssh-client \
678685
rsync \
679686
shellcheck \
@@ -827,6 +834,11 @@ RUN set -eux \
827834
\
828835
&& true
829836
837+
# -------------------- (apt) net-tools --------------------
838+
RUN set -eux \
839+
&& netstat --version | grep net-tools || (netstat --version; false) \
840+
&& true
841+
830842
# -------------------- (composer) phalcon-devtools --------------------
831843
RUN set -eux \
832844
&& if find /usr/local/lib/php/extensions/ -name phalcon.so | grep phalcon; then \

Dockerfiles/work/Dockerfile-5.6

+12
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,7 @@ RUN set -eux \
285285
git \
286286
jq \
287287
mupdf-tools \
288+
net-tools \
288289
openssh-client \
289290
rsync \
290291
shellcheck \
@@ -442,6 +443,11 @@ RUN set -eux \
442443
\
443444
&& true
444445
446+
# -------------------- (apt) net-tools --------------------
447+
RUN set -eux \
448+
&& netstat --version | grep net-tools || (netstat --version; false) \
449+
&& true
450+
445451
# -------------------- (composer) phalcon-devtools --------------------
446452
RUN set -eux \
447453
&& if find /usr/local/lib/php/extensions/ -name phalcon.so | grep phalcon; then \
@@ -707,6 +713,7 @@ RUN set -eux \
707713
git \
708714
jq \
709715
mupdf-tools \
716+
net-tools \
710717
openssh-client \
711718
rsync \
712719
shellcheck \
@@ -860,6 +867,11 @@ RUN set -eux \
860867
\
861868
&& true
862869

870+
# -------------------- (apt) net-tools --------------------
871+
RUN set -eux \
872+
&& netstat --version | grep net-tools || (netstat --version; false) \
873+
&& true
874+
863875
# -------------------- (composer) phalcon-devtools --------------------
864876
RUN set -eux \
865877
&& if find /usr/local/lib/php/extensions/ -name phalcon.so | grep phalcon; then \

Dockerfiles/work/Dockerfile-7.0

+12
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,7 @@ RUN set -eux \
285285
git \
286286
jq \
287287
mupdf-tools \
288+
net-tools \
288289
openssh-client \
289290
rsync \
290291
shellcheck \
@@ -442,6 +443,11 @@ RUN set -eux \
442443
\
443444
&& true
444445
446+
# -------------------- (apt) net-tools --------------------
447+
RUN set -eux \
448+
&& netstat --version | grep net-tools || (netstat --version; false) \
449+
&& true
450+
445451
# -------------------- (composer) phalcon-devtools --------------------
446452
RUN set -eux \
447453
&& if find /usr/local/lib/php/extensions/ -name phalcon.so | grep phalcon; then \
@@ -707,6 +713,7 @@ RUN set -eux \
707713
git \
708714
jq \
709715
mupdf-tools \
716+
net-tools \
710717
openssh-client \
711718
rsync \
712719
shellcheck \
@@ -860,6 +867,11 @@ RUN set -eux \
860867
\
861868
&& true
862869

870+
# -------------------- (apt) net-tools --------------------
871+
RUN set -eux \
872+
&& netstat --version | grep net-tools || (netstat --version; false) \
873+
&& true
874+
863875
# -------------------- (composer) phalcon-devtools --------------------
864876
RUN set -eux \
865877
&& if find /usr/local/lib/php/extensions/ -name phalcon.so | grep phalcon; then \

Dockerfiles/work/Dockerfile-7.1

+12
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,7 @@ RUN set -eux \
285285
git \
286286
jq \
287287
mupdf-tools \
288+
net-tools \
288289
openssh-client \
289290
rsync \
290291
shellcheck \
@@ -442,6 +443,11 @@ RUN set -eux \
442443
\
443444
&& true
444445
446+
# -------------------- (apt) net-tools --------------------
447+
RUN set -eux \
448+
&& netstat --version | grep net-tools || (netstat --version; false) \
449+
&& true
450+
445451
# -------------------- (composer) phalcon-devtools --------------------
446452
RUN set -eux \
447453
&& if find /usr/local/lib/php/extensions/ -name phalcon.so | grep phalcon; then \
@@ -707,6 +713,7 @@ RUN set -eux \
707713
git \
708714
jq \
709715
mupdf-tools \
716+
net-tools \
710717
openssh-client \
711718
rsync \
712719
shellcheck \
@@ -860,6 +867,11 @@ RUN set -eux \
860867
\
861868
&& true
862869

870+
# -------------------- (apt) net-tools --------------------
871+
RUN set -eux \
872+
&& netstat --version | grep net-tools || (netstat --version; false) \
873+
&& true
874+
863875
# -------------------- (composer) phalcon-devtools --------------------
864876
RUN set -eux \
865877
&& if find /usr/local/lib/php/extensions/ -name phalcon.so | grep phalcon; then \

Dockerfiles/work/Dockerfile-7.2

+12
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,7 @@ RUN set -eux \
285285
git \
286286
jq \
287287
mupdf-tools \
288+
net-tools \
288289
openssh-client \
289290
rsync \
290291
shellcheck \
@@ -442,6 +443,11 @@ RUN set -eux \
442443
\
443444
&& true
444445
446+
# -------------------- (apt) net-tools --------------------
447+
RUN set -eux \
448+
&& netstat --version | grep net-tools || (netstat --version; false) \
449+
&& true
450+
445451
# -------------------- (composer) phalcon-devtools --------------------
446452
RUN set -eux \
447453
&& if find /usr/local/lib/php/extensions/ -name phalcon.so | grep phalcon; then \
@@ -707,6 +713,7 @@ RUN set -eux \
707713
git \
708714
jq \
709715
mupdf-tools \
716+
net-tools \
710717
openssh-client \
711718
rsync \
712719
shellcheck \
@@ -860,6 +867,11 @@ RUN set -eux \
860867
\
861868
&& true
862869

870+
# -------------------- (apt) net-tools --------------------
871+
RUN set -eux \
872+
&& netstat --version | grep net-tools || (netstat --version; false) \
873+
&& true
874+
863875
# -------------------- (composer) phalcon-devtools --------------------
864876
RUN set -eux \
865877
&& if find /usr/local/lib/php/extensions/ -name phalcon.so | grep phalcon; then \

Dockerfiles/work/Dockerfile-7.3

+12
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,7 @@ RUN set -eux \
287287
git \
288288
jq \
289289
mupdf-tools \
290+
net-tools \
290291
openssh-client \
291292
rsync \
292293
shellcheck \
@@ -442,6 +443,11 @@ RUN set -eux \
442443
\
443444
&& true
444445
446+
# -------------------- (apt) net-tools --------------------
447+
RUN set -eux \
448+
&& netstat --version | grep net-tools || (netstat --version; false) \
449+
&& true
450+
445451
# -------------------- (composer) phalcon-devtools --------------------
446452
RUN set -eux \
447453
&& if find /usr/local/lib/php/extensions/ -name phalcon.so | grep phalcon; then \
@@ -707,6 +713,7 @@ RUN set -eux \
707713
git \
708714
jq \
709715
mupdf-tools \
716+
net-tools \
710717
openssh-client \
711718
rsync \
712719
shellcheck \
@@ -860,6 +867,11 @@ RUN set -eux \
860867
\
861868
&& true
862869

870+
# -------------------- (apt) net-tools --------------------
871+
RUN set -eux \
872+
&& netstat --version | grep net-tools || (netstat --version; false) \
873+
&& true
874+
863875
# -------------------- (composer) phalcon-devtools --------------------
864876
RUN set -eux \
865877
&& if find /usr/local/lib/php/extensions/ -name phalcon.so | grep phalcon; then \

0 commit comments

Comments
 (0)