Replace all domain names with example.com

This commit is contained in:
John Wuller
2024-11-25 20:35:23 +00:00
parent 62b3dd71d6
commit 015ab261e3
2 changed files with 7 additions and 7 deletions

View File

@ -44,12 +44,12 @@ The argument are:
3. Mesh agent 3. Mesh agent
The url given by mesh for installing new agent. The url given by mesh for installing new agent.
Go to mesh.fqdn.com > Add agent > Installation Executable Linux / BSD / macOS > **Select the good system type** Go to mesh.example.com > Add agent > Installation Executable Linux / BSD / macOS > **Select the good system type**
Copy **ONLY** the URL with the quote. Copy **ONLY** the URL with the quote.
4. API URL 4. API URL
Your api URL for agent communication usually https://api.fqdn.com. Your api URL for agent communication usually https://api.example.com.
5. Client ID 5. Client ID
@ -72,7 +72,7 @@ The argument are:
### Example ### Example
```bash ```bash
./rmmagent-linux.sh install 'amd64' 'https://mesh.fqdn.com/meshagents?id=XXXXX&installflags=X&meshinstall=X' 'https://api.fqdn.com' 3 1 'XXXXX' server ./rmmagent-linux.sh install 'amd64' 'https://mesh.example.com/meshagents?id=XXXXX&installflags=X&meshinstall=X' 'https://api.example.com' 3 1 'XXXXX' server
``` ```
## Update ## Update
@ -95,17 +95,17 @@ The argument are:
2. Mesh FQDN 2. Mesh FQDN
Example of FQDN: mesh.fqdn.com Example of FQDN: mesh.example.com
3. Mesh ID 3. Mesh ID
The ID given by mesh for installing new agent. The ID given by mesh for installing new agent.
Go to mesh.fqdn.com > Add agent > Linux / BSD (Uninstall) > Copy **ONLY** the last value with the single quotes. Go to mesh.example.com > Add agent > Linux / BSD (Uninstall) > Copy **ONLY** the last value with the single quotes.
You are looking for a 64 charaters long value of random letter case, numbers, and special characters. You are looking for a 64 charaters long value of random letter case, numbers, and special characters.
### Example ### Example
```bash ```bash
./rmmagent-linux.sh uninstall mesh.fqdn.com 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX' ./rmmagent-linux.sh uninstall mesh.example.com 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
``` ```
### WARNING ### WARNING

View File

@ -30,7 +30,7 @@ if [[ $1 == "help" ]]; then
echo "" echo ""
echo "List of UNINSTALL argument (no argument name):" echo "List of UNINSTALL argument (no argument name):"
echo "Arg 1: 'uninstall'" echo "Arg 1: 'uninstall'"
echo "Arg 2: Mesh agent FQDN (i.e. mesh.domain.com)" echo "Arg 2: Mesh agent FQDN (i.e. mesh.example.com)"
echo "Arg 3: Mesh agent id (The id needs to have single quotes around it)" echo "Arg 3: Mesh agent id (The id needs to have single quotes around it)"
echo "" echo ""
exit 0 exit 0