@Tom-Elliott @ManofValor
I’ve had this problem on a few of the trunks in the last week. So I’ve just put those commands into a bandaid fix type script and it works everytime it happens, like this morning for example. Said script is just the same commands with some echo’s and -y for automation, looks like this…
#!/bin/bash
echo "running autoremove to clean up apt..."
sudo apt-get autoremove --purge -y
echo "removing php files..."
sudo rm -rf /etc/php5
echo "removing ondrej sources from apt..."
sudo rm -rf /etc/apt-get/sources.d/*ondrej*
echo "uninstalling php5..."
sudo apt-get purge php5* -y
echo "cleaning up apt..."
sudo apt-get autoremove --purge -y
exit
Do we have any idea what is causing this or should I just add those commands to my update script reinstall php over and over and just not worry about it? Granted it doesn’t happen with every trunk, maybe 3 of them in the last week.
I wonder if it’s specific to a linux distro? I am running Ubuntu Server 14.04
@templink What version of Ubuntu are you running?
@ManofValor Assuming you’re having this problem too, what linux distro are you running?
