Hi,
After successfully adding syncthing to my Pi image, I'd like to take it a step further and install zerotier:
This actually takes two steps (taken from [https://www.zerotier.com/download/#entry-5]):
- Download / install using:
curl -s https://install.zerotier.com | sudo bash
or when GPG is already installed
curl -s 'https://raw.githubusercontent.com/zerotier/ZeroTierOne/main/doc/contact%40zerotier.com.gpg' | gpg --import && \ if z=$(curl -s 'https://install.zerotier.com/' | gpg); then echo "$z" | sudo bash; fi
- Joining a predefined network (using a parameter):
zerotier-cli join ################
Does one have to create a plugin for that?
Or is there a way to add these commands in appropriate steps to be included in the image?
Regards,
Rob.
Hi,
After successfully adding syncthing to my Pi image, I'd like to take it a step further and install zerotier:
This actually takes two steps (taken from [https://www.zerotier.com/download/#entry-5]):
curl -s https://install.zerotier.com | sudo bashor when GPG is already installed
curl -s 'https://raw.githubusercontent.com/zerotier/ZeroTierOne/main/doc/contact%40zerotier.com.gpg' | gpg --import && \ if z=$(curl -s 'https://install.zerotier.com/' | gpg); then echo "$z" | sudo bash; fizerotier-cli join ################Does one have to create a plugin for that?
Or is there a way to add these commands in appropriate steps to be included in the image?
Regards,
Rob.