- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
Enhanced Security Measures in Place: To ensure a safer experience, we’ve implemented additional, temporary security measures for all users.
on 02-03-2016 05:53 AM - edited on 10-24-2019 11:05 AM by Retired Member
In a default config the minemeld-auto-update utility connects once per day to MineMeld auto update API to check if a new version of a MineMeld package has been released. If a new version is detected, the package is automatically downloaded and installed.
It is possible to prevent this by deleting the auto update cron job:
$ sudo rm -rf /etc/cron.daily/minemeld-auto-update
To reenable the auto update cron job, create the file /etc/cron.daily/minemeld-auto-update with the following contents:
#!/bin/bash
/usr/sbin/minemeld-auto-update >> /var/log/minemeld-auto-update.log 2>&1
and mark it as executable.
And how can i enable it again?