Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sudo-project
GitHub Repository: sudo-project/sudo
Path: blob/main/plugins/sudoers/ins_classic.h
1532 views
1
/*
2
* SPDX-License-Identifier: ISC
3
*
4
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <[email protected]>
5
*
6
* Permission to use, copy, modify, and distribute this software for any
7
* purpose with or without fee is hereby granted, provided that the above
8
* copyright notice and this permission notice appear in all copies.
9
*
10
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17
*/
18
19
#ifndef SUDOERS_INS_CLASSIC_H
20
#define SUDOERS_INS_CLASSIC_H
21
22
/*
23
* Insults from the original sudo(8).
24
*/
25
26
N_("Wrong! You cheating scum!"),
27
N_("And you call yourself a Rocket Scientist!"),
28
N_("Where did you learn to type?"),
29
N_("Are you on drugs?"),
30
N_("My pet ferret can type better than you!"),
31
N_("You type like i drive."),
32
N_("Do you think like you type?"),
33
N_("Your mind just hasn't been the same since the electro-shock, has it?"),
34
35
#endif /* SUDOERS_INS_CLASSIC_H */
36
37