$theTitle=wp_title(" - ", false); if($theTitle != "") { ?> } else { ?> } ?>
by Andrew Johnstone
I previously wrote about “Installing Java & MySQL – unattended/non-interactive installation”. Whilst using slack, I have been running apt-get during postinstall rather than preinstall.
Files are transferred from slack after preinstall as such transferring any files that conflict with the packages configuration files, apt-get will prompt regardless of DEBIAN_FRONTEND=noninteractive. Not ideal if your trying to run non-interactive. You can use the -o option to circumvent this…
apt-get -o Dpkg::Options::='--force-confdef' -o Dpkg::Options::='--force-confold' -f -q -y php-cli
Previous example of non-interactive installations.
INSTALLER_LOG=/var/log/non-interactive-installer.log installnoninteractive(){ sudo bash -c "DEBIAN_FRONTEND=noninteractive aptitude install -o Dpkg::Options::='--force-confdef' -o Dpkg::Options::='--force-confold' -f -q -y $* >> $INSTALLER_LOG" } assert_package() { is_installed=$(apt-cache policy "$1" | grep 'Installed: (none)' | wc -l); if [ "$is_installed" -eq "1" ] ; then #apt-get install -q -y $1; installnoninteractive $1; fi; }
I have been a developer for roughly 10 years and have worked with an extensive range of technologies. Whilst working for relatively small companies, I have worked with all aspects of the development life cycle, which has given me a broad and in-depth experience.
1 Response to apt-get unattended / non-interactive installation
Ozzy
December 26th, 2014 at 1:34 pm
Thanks Andy. This was useful (: