File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1
1
## 8.15.10 (Unreleased)
2
2
3
+ ### Bugfixes
4
+
5
+ - Fix missing netcat apt install candidate with package netcat-openbsd
6
+
3
7
### Miscellaneous
4
8
5
9
- Add timeout parameter to module_function()
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ INFLUXDB2_VERSION="2.6.1"
25
25
VIRTUALENV_VERSION=" 20.17.1"
26
26
27
27
# Required apt packages
28
- APT_PKGS=" gawk gcc g++ git jq libatlas-base-dev libffi-dev libi2c-dev logrotate moreutils netcat nginx python3 python3-pip python3-dev python3-setuptools rng-tools sqlite3 unzip wget"
28
+ APT_PKGS=" gawk gcc g++ git jq libatlas-base-dev libffi-dev libi2c-dev logrotate moreutils netcat-openbsd nginx python3 python3-pip python3-dev python3-setuptools rng-tools sqlite3 unzip wget"
29
29
30
30
PYTHON_BINARY_SYS_LOC=" $( python3 -c " import os; print(os.environ['_'])" ) "
31
31
@@ -586,9 +586,9 @@ case "${1:-''}" in
586
586
;;
587
587
' update-permissions' )
588
588
printf " \n#### Setting permissions\n"
589
- chown -LR mycodo. mycodo " ${MYCODO_PATH} "
590
- chown -R mycodo. mycodo /var/log/mycodo
591
- chown -R mycodo. mycodo /var/Mycodo-backups
589
+ chown -LR mycodo: mycodo " ${MYCODO_PATH} "
590
+ chown -R mycodo: mycodo /var/log/mycodo
591
+ chown -R mycodo: mycodo /var/Mycodo-backups
592
592
593
593
find " ${MYCODO_PATH} " -type d -exec chmod u+wx,g+wx {} +
594
594
find " ${MYCODO_PATH} " -type f -exec chmod u+w,g+w,o+r {} +
You can’t perform that action at this time.
0 commit comments