mcprovision command not found

In this troubleshooting guide we learn how to fix mcprovision command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

mcprovision: command not found

or when using sudo you get the following error message

sudo: mcprovision: command not found

Solutions to mcprovision: command not found

How To Fix mcprovision: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu mcprovision is provided by mcollective-server-provisioner package.

mcollective-server-provisioner is:

The Server provisioner will provision machines that have the provisioner plugin and don’t have a puppet certificate yet

To fix this problem, we can install more using the command below.

sudo apt-get -y install mcollective-server-provisioner

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install mcollective-server-provisioner.

sudo apt -y install mcollective-server-provisioner

Or if you have aptitude installed you can use the following command.

sudo aptitude install mcollective-server-provisioner

Summary

In this tutorial we learn how to fix mcprovision command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.