[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20190321040418.GF1173@magnolia>
Date: Wed, 20 Mar 2019 21:04:18 -0700
From: "Darrick J. Wong" <darrick.wong@...cle.com>
To: "Theodore Ts'o" <tytso@....edu>
Cc: Ext4 Developers List <linux-ext4@...r.kernel.org>
Subject: Re: [PATCH 9/9] e2scrub,e2scrub_all: print a (more understandable)
error if not run as root
On Wed, Mar 20, 2019 at 10:02:18PM -0400, Theodore Ts'o wrote:
> Signed-off-by: Theodore Ts'o <tytso@....edu>
Oops, yeah, I forgot this. :/
Looks ok,
Reviewed-by: Darrick J. Wong <darrick.wong@...cle.com>
--D
> ---
> scrub/e2scrub.in | 5 +++++
> scrub/e2scrub_all.in | 5 +++++
> 2 files changed, 10 insertions(+)
>
> diff --git a/scrub/e2scrub.in b/scrub/e2scrub.in
> index 301574968..666d6485a 100644
> --- a/scrub/e2scrub.in
> +++ b/scrub/e2scrub.in
> @@ -25,6 +25,11 @@
>
> PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
>
> +if (( $EUID != 0 )); then
> + echo "e2scrub must be run as root"
> + exit 1
> +fi
> +
> snap_size_mb=256
> fstrim=0
> reap=0
> diff --git a/scrub/e2scrub_all.in b/scrub/e2scrub_all.in
> index cad232987..a02ffe226 100644
> --- a/scrub/e2scrub_all.in
> +++ b/scrub/e2scrub_all.in
> @@ -20,6 +20,11 @@
>
> PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
>
> +if (( $EUID != 0 )); then
> + echo "e2scrub_all must be run as root"
> + exit 1
> +fi
> +
> scrub_all=0
> snap_size_mb=256
> reap=0
> --
> 2.19.1
>
Powered by blists - more mailing lists