ansible-ipfs-cluster

(★ 54)

Ansible roles for go-ipfs and ipfs-cluster

File Explorer

  • .gitignore
  • inventory.yml
  • ipfs-cluster.yml
  • ipfs.yml
  • LICENSE
  • Makefile
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

ipfs

View Details ▼

Inter Planetary File System.
A peer-to-peer hypermedia protocol. Aims to make the web more open.

ipfs add {{path/to/file}}

Add a file from local to the filesystem, pin it, and print the relative hash:

ipfs add {{[-r|--recursive]}} {{path/to/directory}}

Add a directory and its files recursively from local to the filesystem and print the relative hash:

ipfs get {{hash}} {{[-o|--output]}} {{path/to/file}}

Save a remote file and give it a name but not pin it:

🔍

pip install

View Details ▼

Install Python packages.

pip install {{package1 package2 ...}}

Install one or more packages:

pip install {{package1 package2 ...}} {{[-U|--upgrade]}}

Upgrade all specified packages to the latest version, installing any that are not already present:

pip install {{package}}=={{version}}

Install a specific version of a package:

🔍

systemctl status

View Details ▼

Display the status of systemd units.

systemctl status {{unit}}.{{service|timer|socket|target|...}}

Show the status of a systemd unit:

systemctl status --failed

Show the status of failed units:

systemctl status

List all running services:

// repository documentation