Comparing version 2.0.2 to 2.0.3
# Changelog for Linux-Installer-Script | ||
## 2019-04-04 | ||
* Docker: Auto-detect if the container has `CAP_NET_ADMIN` and give it to `node` if possible | ||
## 2019-03-15 | ||
* Add `-H` flag to `sudo -u iobroker` to fix EACCES errors when using the `iobroker` commands to install stuff. | ||
## 2019-03-10 | ||
* Don't set CAP_NET_ADMIN in Docker | ||
* Fixed the group add command in FreeBSD | ||
## 2019-03-06 | ||
* Fixed the setcap command so it works in Docker | ||
* Fixed another typo in FreeBSD installation routine | ||
## 2019-03-05 | ||
* Fixed typo in FreeBSD installation routine | ||
## 2019-03-04 | ||
* Also set the correct ACLs when running the script as root | ||
## 2019-03-03 | ||
* Allow the commands needed by RPI2 | ||
## 2019-03-01 | ||
* Add redis as a dependency to the `systemd` unit and `init.d` script to avoid deadlocks on shutdown | ||
* Removed limitation for number of arguments for iobroker | ||
## 2019-02-25 | ||
* fix setcap and include all in one command | ||
## 2019-02-23 | ||
* Give nodejs access to raw devices like ble | ||
## 2019-02-15 | ||
* (Linux) Add iobroker user to the redis group | ||
## 2019-02-03 | ||
* (Linux) Add iobroker user to the i2c group | ||
## 2019-01-30 | ||
* (Linux) Give NodeJS access to privileged ports (<1024 and Bluetooth) | ||
* (MacOS) Add package installing support (brew) and autostart support for | ||
## 2019-01-25 | ||
* (FreeBSD) Added added a procedure to handle the freebsd package installation (there is no apt on BSD). `install_package_freebsd()` | ||
* (FreeBSD) Added a rough list of packages for iobroker to run on FreeBSD (subject to further improvement). | ||
* (FreeBSD) Added config patches for the zero conf daemon processes, add them to rc startup and start them. | ||
## 2019-01-23 | ||
* Revert the `KillMode` change | ||
* Redirect `iobroker {start,stop,restart} adaptername` to `node` when using `systemd`. | ||
**Note:** If you cannot start/stop adapters using the command line, you have to edit the iobroker binary: | ||
``` | ||
sudo nano $(which iob) | ||
``` | ||
and change | ||
``` | ||
if [ "$1" = "start" ] || [ "$1" = "stop" ] || [ "$1" = "restart" ]; then | ||
``` | ||
to | ||
``` | ||
if (( $# == 1 )) && ([ "$1" = "start" ] || [ "$1" = "stop" ] || [ "$1" = "restart" ]); then | ||
``` | ||
Then exit and save. | ||
## 2019-01-22 | ||
@@ -4,0 +70,0 @@ * Use `KillMode=process` in `systemd` to prevent detached processes from being killed aswell |
@@ -48,3 +48,4 @@ // @ts-check | ||
'iobroker.admin': 'stable', | ||
'iobroker.discovery': 'stable' | ||
'iobroker.discovery': 'stable', | ||
'iobroker.info': 'stable' | ||
}) | ||
@@ -51,0 +52,0 @@ }; |
{ | ||
"name": "iobroker", | ||
"version": "2.0.2", | ||
"version": "2.0.3", | ||
"engines": { | ||
@@ -62,4 +62,6 @@ "node": ">=8.12" | ||
"devDependencies": { | ||
"eslint": "^5.5.0" | ||
"eslint": "^5.5.0", | ||
"mocha": "^6.0.2", | ||
"chai": "^4.2.0" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
82817
16
939
3