Files
Arch-R/packages/sysutils/busybox/scripts/sudo

18 lines
593 B
Plaintext
Raw Normal View History

2014-02-12 20:00:22 +02:00
#!/bin/sh
2018-07-16 20:45:36 +02:00
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2009-2014 Stephan Raue (stephan@openelec.tv)
2014-02-12 20:00:22 +02:00
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 "
2016-03-20 16:42:33 +01:00
message="$message\n With LibreELEC you have root access by default, so you dont need 'sudo'"
2014-02-12 20:00:22 +02:00
message="$message\n "
echo -e $message
2014-09-07 17:38:11 +02:00
exit 1