Skip to content
Snippets Groups Projects
Commit cc4c2d93 authored by Diego Giovane Pasqualin's avatar Diego Giovane Pasqualin
Browse files

Merge branch 'hotfix/fix-le-autoupgrade' into 'master'

Hotfix/fix le autoupgrade
parents df11eee4 22699e00
No related branches found
No related tags found
No related merge requests found
...@@ -125,6 +125,12 @@ else ...@@ -125,6 +125,12 @@ else
cp -a ".md5sum" ".backup/" cp -a ".md5sum" ".backup/"
fi fi
#Fix the le-autoupgrade on LE 5
if test -f /etc/le_version && \
dpkg --compare-versions $(cat /etc/le_version) gt 4; then
sudo rm -f '/etc/apt/sources.list.d/quantal-repos.list'
fi
# Run the agent and check if its execution was alright, exiting in case of error # Run the agent and check if its execution was alright, exiting in case of error
${DATASID_HOME}/bin/datasid-agent.sh ${DATASID_HOME}/bin/datasid-agent.sh
RETVAL=$? RETVAL=$?
......
AC_PREREQ([2.65]) AC_PREREQ([2.65])
AC_INIT([datasid-agent], [1.0.2], [datasid@c3sl.ufpr.br]) AC_INIT([datasid-agent], [1.0.3], [datasid@c3sl.ufpr.br])
AC_CONFIG_SRCDIR([src/client.c]) AC_CONFIG_SRCDIR([src/client.c])
AC_CONFIG_HEADERS([config.h]) AC_CONFIG_HEADERS([config.h])
AC_PREFIX_DEFAULT([/opt]) AC_PREFIX_DEFAULT([/opt])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment