https://github.com/techgaun/raspbian-zwave-bootstrap
A quick bootstrap script to build environment for using python-openzwave on Raspbian
https://github.com/techgaun/raspbian-zwave-bootstrap
home-assistant home-automation openzwave smarthome zwave
Last synced: about 1 month ago
JSON representation
A quick bootstrap script to build environment for using python-openzwave on Raspbian
- Host: GitHub
- URL: https://github.com/techgaun/raspbian-zwave-bootstrap
- Owner: techgaun
- License: apache-2.0
- Created: 2017-04-10T01:04:24.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-10T02:49:40.000Z (about 9 years ago)
- Last Synced: 2025-04-05T20:41:26.888Z (about 1 year ago)
- Topics: home-assistant, home-automation, openzwave, smarthome, zwave
- Language: Shell
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# raspbian-zwave-bootstrap
> A quick bootstrap script to build environment for running openzwave on Raspbian
### Usage
Download and run the script as a root user
```shell
wget -q -O - https://raw.githubusercontent.com/techgaun/raspbian-zwave-bootstrap/master/bootstrap.sh | sudo bash
```
### Information
- A user `techgaun` is added to the system by default
- The openzwave and python-openzwave is compiled at `/opt/techgaun` directory by default
- Override the user by passing `ZWAVE_USER` envvar
- Override the root directory by passing `ROOT_DIR` envvar
Example of overriding will look as:
```shell
wget -q -O - https://raw.githubusercontent.com/techgaun/raspbian-zwave-bootstrap/master/bootstrap.sh | \
ZWAVE_USER=someuser ROOT_DIR=/opt/custompath sudo bash
```