Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

This commit is fixing the network-manager package detection (use dpkg-query instead of dpkg -l) #3

Closed
wants to merge 3 commits into from

Commits on Oct 22, 2012

  1. waagent: fix network manager detection

    Using dpkg-query -s is more appropriate than using dpkg -l and grep -q.
    The only way to have 0 returned by dpkg-query -s is to have NM installed
    and dpkg -l |grep -q may return 1 if the package is not yet known in the
    base (for instance, right after installing).
    
    Signed-off-by: Arnaud Patard <apatard@hupstream.com>
    apatard committed Oct 22, 2012
    Configuration menu
    Copy the full SHA
    1f7b670 View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2013

  1. Merge remote-tracking branch 'upstream/master'

    Conflicts:
    	waagent
    
    Signed-off-by: Arnaud Patard <apatard@hupstream.com>
    apatard committed Apr 9, 2013
    Configuration menu
    Copy the full SHA
    10c29dc View commit details
    Browse the repository at this point in the history
  2. Fix cdrom detection

    waagent is trying to detect if there's a virtual cdrom by grepping
    fdisk output, except that the output is different if we're not using
    en locale. Use LC_ALL=C to make sure we'll have "correct" output
    
    Signed-off-by: Arnaud Patard <apatard@hupstream.com>
    apatard committed Apr 9, 2013
    Configuration menu
    Copy the full SHA
    ae14435 View commit details
    Browse the repository at this point in the history