Clearer python-memcached info (#11772)

This commit is contained in:
Tony Murray
2020-06-04 20:36:25 -05:00
committed by GitHub
parent b6875b73c7
commit 2a5b1fd071
4 changed files with 7 additions and 7 deletions

View File

@@ -229,8 +229,8 @@ if __name__ == '__main__':
raise
except ImportError:
print("ERROR: missing memcache python module:")
print("On deb systems: apt-get install python-memcache")
print("On other systems: easy_install python-memcached")
print("On deb systems: apt-get install python3-memcache")
print("On other systems: pip3 install python-memcached")
print("Disabling distributed discovery.")
distdisco = False
else:

View File

@@ -29,7 +29,7 @@ to communicate with each other.
These requirements are above the normal requirements for a full LibreNMS install.
- rrdtool version 1.4 or above
- python-memcached package
- Python 3 python-memcached package
- a memcached install
- a rrdcached install

View File

@@ -232,8 +232,8 @@ if __name__ == '__main__':
raise
except ImportError:
print("ERROR: missing memcache python module:")
print("On deb systems: apt-get install python-memcache")
print("On other systems: easy_install python-memcached")
print("On deb systems: apt-get install python3-memcache")
print("On other systems: pip3 install python-memcached")
print("Disabling distributed poller.")
distpoll = False
else:

View File

@@ -236,8 +236,8 @@ if __name__ == '__main__':
raise
except ImportError:
print("ERROR: missing memcache python module:")
print("On deb systems: apt-get install python-memcache")
print("On other systems: easy_install python-memcached")
print("On deb systems: apt-get install python3-memcache")
print("On other systems: pip3 install python-memcached")
print("Disabling distributed discovery.")
servicedisco = False
else: