Added CT mailbackupsys,

Updated nginx own repo to Yaml for Alpine instead of inst.sh
This commit is contained in:
2021-10-27 22:33:30 +00:00
parent d9ab77f384
commit c18fbc1dbd
7 changed files with 76 additions and 23 deletions

View File

@@ -42,6 +42,7 @@ This can be done on a Minimal debian CT (make sure to enable nesting) on the new
| nodejs | Alpine | Basic nodejs install with pm2 |
| mqtt | Alpine | Mosquitto mqtt broker |
| hass | Alpine | HomeAssistant instance with HACS and mysql support |
| mailbackupsys | Alpine | Contains mail achive suite (MailBackup-sys) |
## TODO
**Begin original list**
@@ -56,7 +57,7 @@ This can be done on a Minimal debian CT (make sure to enable nesting) on the new
AptCacherNG
~Unifi~ Not supported in debian 11
@@ -64,7 +65,7 @@ AptCacherNG
MailBackup*
~FileShelter~ Not supported in debian 11 /transfer.sh As alternative
@@ -142,14 +143,24 @@ exit
**Do not start this container after creation, follow these steps first**
* Recommended to give CT 1-2GB of RAM (Required for updating)
### In Proxmox
* Add the following to `/etc/udev/rules.d/99-CustomHome.rules`
* Add the following to `/etc/udev/rules.d/99-CustomHome.rules`
#### Always add (to set the device permissions)**
```
KERNEL=="ttyUSB[0-9]*", MODE="0666"
KERNEL=="ttyACM[0-9]*", MODE="0666"
```
#### Add for Sonoff Zigbee 3.0 USB (CC2652P + CP2102N)
```
SUBSYSTEM=="tty", ACTION=="change", ATTRS{idVendor}=="10c4", ATTRS{idProduct}=="ea60", SYMLINK+="ttyACM-Zigbee"
SUBSYSTEM=="tty", ACTION=="add", ATTRS{idVendor}=="10c4", ATTRS{idProduct}=="ea60", SYMLINK+="ttyACM-Zigbee"
```
#### Add for Zigbee CC2531 USB
```
SUBSYSTEM=="tty", ACTION=="change", ATTRS{idVendor}=="0451", ATTRS{idProduct}=="16a8", SYMLINK+="ttyACM-Zigbee"
SUBSYSTEM=="tty", ACTION=="add", ATTRS{idVendor}=="0451", ATTRS{idProduct}=="16a8", SYMLINK+="ttyACM-Zigbee"
```
#### Add for Zwave Aeotec Z-Stick Gen5
```
SUBSYSTEM=="tty", ACTION=="change", ATTRS{idVendor}=="0658", ATTRS{idProduct}=="0200", SYMLINK+="ttyACM-Zwave"
SUBSYSTEM=="tty", ACTION=="add", ATTRS{idVendor}=="0658", ATTRS{idProduct}=="0200", SYMLINK+="ttyACM-Zwave"
```