1
0
mirror of https://github.com/libretro/Lakka-LibreELEC.git synced 2024-11-25 02:36:17 +00:00
Lakka-LibreELEC/packages/sysutils/busybox/scripts/sudo
2018-07-18 22:37:47 +02:00

18 lines
593 B
Bash
Executable File

#!/bin/sh
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2009-2014 Stephan Raue (stephan@openelec.tv)
message="$message\n There is no working 'sudo'."
message="$message\n "
message="$message\n On debian/ubuntu/all general purpose linux distributions 'sudo'"
message="$message\n allows a permitted user to execute a command as the superuser"
message="$message\n or another user, as specified by the security policy"
message="$message\n "
message="$message\n With LibreELEC you have root access by default, so you dont need 'sudo'"
message="$message\n "
echo -e $message
exit 1