• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. xvierc
    3. Best
    X
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 9
    • Best 2
    • Controversial 0
    • Groups 0

    Best posts made by xvierc

    • RE: The bleeding edge with SVN3318 and a virgin Debian 8.0.0

      The problem with the service start error seems to be that $linuxReleaseName in .install.sh evaluates to “Debian GNU/Linux”, not “Debian” as the scripts expect. After setting $linuxReleaseName manually in .install.sh, everything worked fine for me.

      posted in Bug Reports
      X
      xvierc
    • RE: Fedora 22 Server - issues with installer

      It looks like it’s from this part of the .install.sh script where it tries to detect the distribution:

      if [ -f "/etc/os-release" ]; then
      	linuxReleaseName=`sed -n 's/^NAME="\(.*\)"/\1/p' /etc/os-release`;
      else
      	linuxReleaseName=`cat /etc/*release* 2>/devnull | head -n1 | awk '{print $1}'`;
      fi
      

      On Fedora 22 the installation has issues because there are no quotes around NAME’s value, so linuxReleaseName returns empty instead of with Fedora.

      Debian 8 also has installation issues related to this. Debian has the quotes, but the value is “Debian GNU/Linux” and the other scripts are looking for just “Debian”.

      posted in Bug Reports
      X
      xvierc
    • 1 / 1