public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Christian Kujau <evil@g-house.de>
To: "Michał Piotrowski" <piotrowskim@trex.wsi.edu.pl>
Cc: Paolo Ciarrocchi <paolo.ciarrocchi@gmail.com>,
	linux-kernel@vger.kernel.org
Subject: Re: [ANNOUNCE] ORT - Oops Reporting Tool
Date: Sun, 26 Jun 2005 00:00:28 +0200	[thread overview]
Message-ID: <42BDD3FC.8090706@g-house.de> (raw)
In-Reply-To: <4d8e3fd3050624085929581341@mail.gmail.com>

[-- Attachment #1: Type: text/plain, Size: 260 bytes --]

Paolo Ciarrocchi wrote:
> 
> The commands that are requiring root capabilties are:
> lspci -vvv 
> lsusb -v

i still dislike the idea being forced to be root, does the attached patch 
looks ok?

thank you,
Christian.

-- 
BOFH excuse #211:

Lightning strikes.

[-- Attachment #2: ort-b1.diff --]
[-- Type: text/plain, Size: 966 bytes --]

--- ort/ort.sh.orig	2005-06-25 23:42:22.000000000 +0200
+++ ort/ort.sh	2005-06-25 23:54:32.000000000 +0200
@@ -34,7 +34,6 @@ EM_CLI=mutt
 
 help() {
     echo "Usage: [root@mylinuxbox ~]$ ./ort.sh oops.txt"
-    echo "You need to be root [uid=0] to run the script"
     exit 1
 }
 
@@ -53,7 +52,12 @@ cmd_line() {
 check_uid() {
     if [ $UID != "0" ]
 	then
-	    help
+	    echo -n "You should be root [uid=0] to run the script, continue? [y,n]  "
+	    read c
+	    if [ "$c" != "y" ]; then
+		echo "Aborted."
+		exit 1
+	    fi
     fi
 }
 
@@ -274,7 +278,7 @@ point_7_4() {
 
 point_7_5() {
     echo -e "\n[7.5.] PCI information" >> $ORT_F
-    lspci -vvv >> $ORT_F
+    env PATH=/bin:/usr/bin:/sbin:/usr/sbin lspci -vvv >> $ORT_F
 }
 
 point_7_6() {
@@ -286,7 +290,7 @@ point_7_6() {
 
 point_7_7() {
     echo -e "\n[7.7.] USB information" >> $ORT_F
-    lsusb -v >> $ORT_F
+    env PATH=/bin:/usr/bin:/sbin:/usr/sbin lsusb -v >> $ORT_F
 }
 
 point_7_8() {

  parent reply	other threads:[~2005-06-25 22:01 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-06-24 10:50 [ANNOUNCE] ORT - Oops Reporting Tool Michał Piotrowski
2005-06-24 13:42 ` Christian
2005-06-24 15:45   ` randy_dunlap
     [not found]   ` <4d8e3fd3050624085929581341@mail.gmail.com>
2005-06-25 22:00     ` Christian Kujau [this message]
2005-06-25 20:19       ` Michał Piotrowski
2005-06-26 18:58       ` Paolo Ciarrocchi
2005-06-25 14:33 ` Michał Piotrowski

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=42BDD3FC.8090706@g-house.de \
    --to=evil@g-house.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=paolo.ciarrocchi@gmail.com \
    --cc=piotrowskim@trex.wsi.edu.pl \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox