Public bug reported:

function set_sata_alpm prints "Setting SATA APLM on %s to %s...", in fact this 
should be "Setting SATA ALPM on %s to %s...".
(APLM --> ALPM).

set_sata_alpm() {
    # see kernel commit 6013efd8860bf15c1f86f365332642cfe557152f
    kv="$(uname -r)"
    [ "$kv" ] || exit $NA  #for paranoia's sake
    [ "${kv%-*}" \< "2.6.33" ] && exit $NA  # avoid fs corruption
    for f in /sys/class/scsi_host/host*; do
        [ -w "$f/link_power_management_policy" ] || continue
        printf "Setting SATA APLM on %s to %s..." "${f##*/}" "$1"
        echo "$1" > "$f/link_power_management_policy" && echo Done. || \
            echo Failed.
    done
}

Be nice if this was fixed.

** Affects: pm-utils (Ubuntu)
     Importance: Undecided
     Assignee: Canonical Foundations Team (canonical-foundations)
         Status: New

** Changed in: pm-utils (Ubuntu)
     Assignee: (unassigned) => Canonical Foundations Team 
(canonical-foundations)

** Changed in: pm-utils (Ubuntu)
    Milestone: None => precise-alpha-2

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/900930

Title:
  pm-utils: typo in set_sata_alpm()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pm-utils/+bug/900930/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to