![]() |
Upcoming moOde 6.5.0 - Printable Version +- Moode Forum (https://moodeaudio.org/forum) +-- Forum: moOde audio player (https://moodeaudio.org/forum/forumdisplay.php?fid=3) +--- Forum: Support (https://moodeaudio.org/forum/forumdisplay.php?fid=7) +--- Thread: Upcoming moOde 6.5.0 (/showthread.php?tid=2189) |
RE: Upcoming moOde 6.5.0 - Tim Curtis - 03-03-2020 Yes it appears these timers trigger unattended apt-get update and apt-get upgrade :-0 No sysadmin in their right mind would have these enabled on any production Linux system. The obvious issues for moOde with auto-upgrades are breakage caused by failed upgrades or upgrades that result in changes to certain core packages for example PHP that break moOde dependencies. Code: pi@rp3:~ $ cat /lib/systemd/system/apt-daily-upgrade.service from apt-daily-upgrade.service Code: ExecStart=/usr/lib/apt/apt.systemd.daily install from apt.systemd.daily Code: if [ "$1" = "install" ] || [ -z "$1" ] ; then RE: Upcoming moOde 6.5.0 - TheOldPresbyope - 03-03-2020 Curious. When I just tried a dry-run upgrade on a 6.4.2 player, apt-get reports a ton of packages, which suggests to me that it isn't being run unattended. Code: pi@moodevu:~ $ sudo apt-get -s upgrade In any case, it shouldn't be run unattended so grab a pair of pliers and crush those timers ![]() Regards, Kent RE: Upcoming moOde 6.5.0 - Tim Curtis - 03-03-2020 Oddly my experience has been the same. I don't recall any of my systems automatically upgrading even though the systemd code suggests that it actually will automatically run apt-get upgrade. Maybe there are other conditions that have to be met other than just the timer checking every day. RE: Upcoming moOde 6.5.0 - TookaFace - 03-03-2020 For me the upgrade timer does nothing really (as it does not upgrade pkg) since the configuration file is missing from /etc/apt/apt.conf.d/ Quick test: With sudo /usr/lib/apt/apt.systemd.daily install cmd, the script exit here (line 428): Code: # check if we actually have to do anything that requires locking the cache Before to do anything. RE: Upcoming moOde 6.5.0 - Tim Curtis - 03-03-2020 That explains it :-) RE: Upcoming moOde 6.5.0 - philrandal - 03-04-2020 (03-03-2020, 05:45 PM)Tim Curtis Wrote: Oddly my experience has been the same. I don't recall any of my systems automatically upgrading even though the systemd code suggests that it actually will automatically run apt-get upgrade. Maybe there are other conditions that have to be met other than just the timer checking every day. Auto-updating on the pi is a tad complicated. To automatically update Raspbian on a schedule, follow these steps: sudo apt install unattended-upgrades mailutils sudo nano /etc/apt/apt.conf.d/50unattended-upgrades Edit to include these sources (remove all others) Code: "origin=Raspbian,codename=${distro_codename},label=Raspbian"; and add Code: Unattended-Upgrade::Automatic-Reboot "true"; sudo nano /etc/apt/apt.conf.d/20auto-upgrades Code: APT::Periodic::Update-Package-Lists "1"; To enable, sudo dpkg-reconfigure --priority=low unattended-upgrades To set the systemctl apt timer to fire at 2AM daily: sudo systemctl unmask apt-daily-upgrade.timer sudo systemctl edit apt-daily-upgrade.timer Code: [Timer] To test, sudo unattended-upgrade -d -v --dry-run Cheers, Phil RE: Upcoming moOde 6.5.0 - TheOldPresbyope - 03-06-2020 (03-06-2020, 04:10 AM)duracell80 Wrote: Just checking in, I'm safe. We had an EF-4 Tornado graze our subdivision, so yeah that bus almost hit me, but we have power back on now at least Our city is devestated right now. But before this we've been preparing for the coronavirus.Yikes. I'm relieved to hear it was "only" a near miss for you. I was born in a small town in southeastern Kansas, smack dab in Tornado Alley. I have an inkling what you are seeing and experiencing around you. Best of luck to you, your neighbors, your town. Regards, Kent RE: Upcoming moOde 6.5.0 - corrobor - 03-14-2020 Is It possibile to try the 6.5.0 working progress? RE: Upcoming moOde 6.5.0 - Tim Curtis - 03-14-2020 Our project does not have the resources to do a public beta but I'll be posting some information on r650 in the coming days. We are working our way through a big upgrade to the the User Interface and the Library :-) RE: Upcoming moOde 6.5.0 - Tim Curtis - 03-22-2020 The moOde crew has made a lot of progress on r650 so I thought I'd post some screen shots. Compliments to @swizzle for truly wonderful contribution :-) and to the Comms Hub team for finding and fixing bugs, and for some nice feature contribs :-) A few highlights: - The "Update library" item on the main menu performs an MPD database update and then automatically runs the Thumbnail updater after the update completes - Separate sorts for Tag and Album views - Configurable extra metadata - New look and feel for the UI [attachment=1086] [attachment=1087] [attachment=1088] [attachment=1089] [attachment=1090] [attachment=1091] [attachment=1092] [attachment=1093] |