++version
This commit is contained in:
2
BUGS
2
BUGS
@@ -1,4 +1,4 @@
|
||||
Known bugs in sudo version 1.5.8
|
||||
Known bugs in sudo version 1.5.9
|
||||
================================
|
||||
|
||||
1) "make install-man" should substitute correct paths into the
|
||||
|
4
CHANGES
4
CHANGES
@@ -1033,3 +1033,7 @@ Sudo 1.5.8p2 released.
|
||||
|
||||
324) Fixed a parse bug wrt the ! operator and runas specs. Noted by
|
||||
David A Beck <BKD@payserv.telekurs.com>.
|
||||
|
||||
325) Use new emalloc/erealloc/estrdup functions (catch errors and exit).
|
||||
|
||||
Sudo 1.5.9 released.
|
||||
|
6
INSTALL
6
INSTALL
@@ -1,4 +1,4 @@
|
||||
Installation instructions for CU sudo 1.5.8
|
||||
Installation instructions for CU sudo 1.5.9
|
||||
===========================================
|
||||
|
||||
Sudo uses a `configure' script to probe the capabilities and type
|
||||
@@ -63,11 +63,11 @@ significantly as compared to previous versions. All options are
|
||||
now set via the configure script. See below for a list of all the
|
||||
configure options and their meanings.
|
||||
|
||||
By default, sudo 1.5.8 expects the sudoers file to be mode 0440 and
|
||||
By default, sudo 1.5.9 expects the sudoers file to be mode 0440 and
|
||||
to be owned by user and group 0. This differs from version 1.4 and
|
||||
below which expected the sudoers file to be mode 0400 and to be
|
||||
owned by root. Doing a `make install' will set the sudoers file
|
||||
to the new mode and group. If sudo 1.5.8 encounters a sudoers file
|
||||
to the new mode and group. If sudo 1.5.9 encounters a sudoers file
|
||||
with the old permissions it will attempt to update it to the new
|
||||
scheme. You cannot, however, use a sudoers file with the new
|
||||
permissions with an old sudo binary. It is suggested that if have
|
||||
|
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# CU sudo version 1.5.8
|
||||
# CU sudo version 1.5.9
|
||||
# Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
@@ -113,7 +113,7 @@ LIBOBJS = @LIBOBJS@ @ALLOCA@
|
||||
HDRS = sudo.h compat.h version.h insults.h \
|
||||
ins_2001.h ins_classic.h ins_goons.h ins_csops.h sudo.tab.h
|
||||
|
||||
VERSION = 1.5.8
|
||||
VERSION = 1.5.9
|
||||
|
||||
DISTFILES = $(SRCS) $(HDRS) BUGS CHANGES COPYING HISTORY INSTALL \
|
||||
INSTALL.configure TODO PORTING README RUNSON \
|
||||
|
2
README
2
README
@@ -1,4 +1,4 @@
|
||||
This is the CU version of sudo, release 1.5.8
|
||||
This is the CU version of sudo, release 1.5.9
|
||||
|
||||
The sudo philosophy
|
||||
===================
|
||||
|
2
alloc.c
2
alloc.c
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
2
check.c
2
check.c
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8 (based on Root Group sudo version 1.1)
|
||||
* CU sudo version 1.5.9 (based on Root Group sudo version 1.1)
|
||||
* Copyright (c) 1994,1996,1998,1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This software comes with no waranty whatsoever, use at your own risk.
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
2
compat.h
2
compat.h
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
2
configure
vendored
2
configure
vendored
@@ -645,7 +645,7 @@ fi
|
||||
|
||||
|
||||
|
||||
echo "Configuring CU Sudo version 1.5.8"
|
||||
echo "Configuring CU Sudo version 1.5.9"
|
||||
PROGS="sudo visudo"
|
||||
SUDO_LDFLAGS=""
|
||||
VISUDO_LDFLAGS=""
|
||||
|
@@ -7,7 +7,7 @@ AC_CONFIG_HEADER(config.h pathnames.h)
|
||||
dnl
|
||||
dnl This won't work before AC_INIT()
|
||||
dnl
|
||||
echo "Configuring CU Sudo version 1.5.8"
|
||||
echo "Configuring CU Sudo version 1.5.9"
|
||||
dnl
|
||||
dnl Variables that get substituted in the Makefile
|
||||
dnl
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1994,1996,1998,1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
2
lex.yy.c
2
lex.yy.c
@@ -512,7 +512,7 @@ char *yytext;
|
||||
#define INITIAL 0
|
||||
#line 2 "parse.lex"
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8 (based on Root Group sudo version 1.1)
|
||||
* CU sudo version 1.5.9 (based on Root Group sudo version 1.1)
|
||||
* Copyright (c) 1994,1996,1998,1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This software comes with no waranty whatsoever, use at your own risk.
|
||||
|
2
parse.c
2
parse.c
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
@@ -1,6 +1,6 @@
|
||||
%{
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
@@ -1,7 +1,7 @@
|
||||
%{
|
||||
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
2
putenv.c
2
putenv.c
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
2
strdup.c
2
strdup.c
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8 (based on Root Group sudo version 1.1)
|
||||
* CU sudo version 1.5.9 (based on Root Group sudo version 1.1)
|
||||
* Copyright (c) 1994,1996,1998,1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This software comes with no waranty whatsoever, use at your own risk.
|
||||
|
2
sudo.c
2
sudo.c
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8 (based on Root Group sudo version 1.1)
|
||||
* CU sudo version 1.5.9 (based on Root Group sudo version 1.1)
|
||||
* Copyright (c) 1994,1996,1998,1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This software comes with no waranty whatsoever, use at your own risk.
|
||||
|
10
sudo.cat
10
sudo.cat
@@ -61,7 +61,7 @@ OOOOPPPPTTTTIIIIOOOONNNNSSSS
|
||||
|
||||
|
||||
|
||||
17/Feb/99 1.5.8 1
|
||||
17/Feb/99 1.5.9 1
|
||||
|
||||
|
||||
|
||||
@@ -127,7 +127,7 @@ SSSSEEEECCCCUUUURRRRIIIITTTTYYYY NNNNOOOOTTTTE
|
||||
|
||||
|
||||
|
||||
17/Feb/99 1.5.8 2
|
||||
17/Feb/99 1.5.9 2
|
||||
|
||||
|
||||
|
||||
@@ -193,7 +193,7 @@ EEEENNNNVVVVIIIIRRRROOOONNNNMMMMEEEENNNNTTTT V
|
||||
|
||||
|
||||
|
||||
17/Feb/99 1.5.8 3
|
||||
17/Feb/99 1.5.9 3
|
||||
|
||||
|
||||
|
||||
@@ -259,7 +259,7 @@ SSSSEEEEEEEE AAAALLLLSSSSOOOO
|
||||
|
||||
|
||||
|
||||
17/Feb/99 1.5.8 4
|
||||
17/Feb/99 1.5.9 4
|
||||
|
||||
|
||||
|
||||
@@ -325,6 +325,6 @@ sudo(8) MAINTENANCE COMMANDS sudo(8)
|
||||
|
||||
|
||||
|
||||
17/Feb/99 1.5.8 5
|
||||
17/Feb/99 1.5.9 5
|
||||
|
||||
|
||||
|
2
sudo.h
2
sudo.h
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8 (based on Root Group sudo version 1.1)
|
||||
* CU sudo version 1.5.9 (based on Root Group sudo version 1.1)
|
||||
* Copyright (c) 1994,1996,1998,1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This software comes with no waranty whatsoever, use at your own risk.
|
||||
|
6
sudo.man
6
sudo.man
@@ -2,8 +2,8 @@
|
||||
''' $RCSfile$$Revision$$Date$
|
||||
'''
|
||||
''' $Log$
|
||||
''' Revision 1.30 1999/02/17 16:40:55 millert
|
||||
''' fix grammar; espie@openbsd.org
|
||||
''' Revision 1.31 1999/03/29 04:05:13 millert
|
||||
''' ++version
|
||||
'''
|
||||
'''
|
||||
.de Sh
|
||||
@@ -96,7 +96,7 @@
|
||||
.nr % 0
|
||||
.rr F
|
||||
.\}
|
||||
.TH sudo 8 "1.5.8" "17/Feb/99" "MAINTENANCE COMMANDS"
|
||||
.TH sudo 8 "1.5.9" "17/Feb/99" "MAINTENANCE COMMANDS"
|
||||
.UC
|
||||
.if n .hy 0
|
||||
.if n .na
|
||||
|
@@ -19,7 +19,7 @@ static char yyrcsid[]
|
||||
#line 2 "parse.yacc"
|
||||
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
12
sudoers.cat
12
sudoers.cat
@@ -61,7 +61,7 @@ DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
|
||||
|
||||
|
||||
|
||||
6/Feb/98 1.5.8 1
|
||||
17/Jan/99 1.5.9 1
|
||||
|
||||
|
||||
|
||||
@@ -127,7 +127,7 @@ sudoers(5) FILE FORMATS sudoers(5)
|
||||
|
||||
|
||||
|
||||
6/Feb/98 1.5.8 2
|
||||
17/Jan/99 1.5.9 2
|
||||
|
||||
|
||||
|
||||
@@ -193,7 +193,7 @@ EEEEXXXXAAAAMMMMPPPPLLLLEEEESSSS
|
||||
|
||||
|
||||
|
||||
6/Feb/98 1.5.8 3
|
||||
17/Jan/99 1.5.9 3
|
||||
|
||||
|
||||
|
||||
@@ -259,7 +259,7 @@ sudoers(5) FILE FORMATS sudoers(5)
|
||||
|
||||
|
||||
|
||||
6/Feb/98 1.5.8 4
|
||||
17/Jan/99 1.5.9 4
|
||||
|
||||
|
||||
|
||||
@@ -325,7 +325,7 @@ FFFFIIIILLLLEEEESSSS
|
||||
|
||||
|
||||
|
||||
6/Feb/98 1.5.8 5
|
||||
17/Jan/99 1.5.9 5
|
||||
|
||||
|
||||
|
||||
@@ -391,6 +391,6 @@ SSSSEEEEEEEE AAAALLLLSSSSOOOO
|
||||
|
||||
|
||||
|
||||
6/Feb/98 1.5.8 6
|
||||
17/Jan/99 1.5.9 6
|
||||
|
||||
|
||||
|
@@ -2,8 +2,8 @@
|
||||
''' $RCSfile$$Revision$$Date$
|
||||
'''
|
||||
''' $Log$
|
||||
''' Revision 1.5 1999/01/17 22:40:53 millert
|
||||
''' crank version and regen files
|
||||
''' Revision 1.6 1999/03/29 04:05:13 millert
|
||||
''' ++version
|
||||
'''
|
||||
'''
|
||||
.de Sh
|
||||
@@ -96,7 +96,7 @@
|
||||
.nr % 0
|
||||
.rr F
|
||||
.\}
|
||||
.TH sudoers 5 "1.5.8" "6/Feb/98" "FILE FORMATS"
|
||||
.TH sudoers 5 "1.5.9" "17/Jan/99" "FILE FORMATS"
|
||||
.UC
|
||||
.if n .hy 0
|
||||
.if n .na
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
2
utime.c
2
utime.c
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
@@ -24,6 +24,6 @@
|
||||
#ifndef _SUDO_VERSION_H
|
||||
#define _SUDO_VERSION_H
|
||||
|
||||
static const char version[] = "1.5.8";
|
||||
static const char version[] = "1.5.9";
|
||||
|
||||
#endif /* _SUDO_VERSION_H */
|
||||
|
2
visudo.c
2
visudo.c
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* CU sudo version 1.5.8
|
||||
* CU sudo version 1.5.9
|
||||
* Copyright (c) 1996, 1998, 1999 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
|
@@ -61,7 +61,7 @@ FFFFIIIILLLLEEEESSSS
|
||||
|
||||
|
||||
|
||||
17/Oct/98 1.5.8 1
|
||||
17/Jan/99 1.5.9 1
|
||||
|
||||
|
||||
|
||||
@@ -127,7 +127,7 @@ SSSSEEEEEEEE AAAALLLLSSSSOOOO
|
||||
|
||||
|
||||
|
||||
17/Oct/98 1.5.8 2
|
||||
17/Jan/99 1.5.9 2
|
||||
|
||||
|
||||
|
||||
@@ -193,6 +193,6 @@ visudo(8) MAINTENANCE COMMANDS visudo(8)
|
||||
|
||||
|
||||
|
||||
17/Oct/98 1.5.8 3
|
||||
17/Jan/99 1.5.9 3
|
||||
|
||||
|
||||
|
@@ -109,11 +109,17 @@ need to delete.
|
||||
|
||||
<P>
|
||||
|
||||
<DT><STRONG><A NAME="item__etc_stmp_">/etc/stmp: Permission denied
|
||||
|
||||
</A></STRONG><DD>
|
||||
You didn't run <STRONG>visudo</STRONG> as root.
|
||||
|
||||
|
||||
<P>
|
||||
|
||||
<DT><STRONG><A NAME="item_Can">Can't find you in the passwd database
|
||||
|
||||
</A></STRONG><DD>
|
||||
Your userid does not appear in the passwd file.
|
||||
|
||||
|
||||
|
@@ -2,8 +2,8 @@
|
||||
''' $RCSfile$$Revision$$Date$
|
||||
'''
|
||||
''' $Log$
|
||||
''' Revision 1.4 1999/01/17 22:40:55 millert
|
||||
''' crank version and regen files
|
||||
''' Revision 1.5 1999/03/29 04:05:14 millert
|
||||
''' ++version
|
||||
'''
|
||||
'''
|
||||
.de Sh
|
||||
@@ -96,7 +96,7 @@
|
||||
.nr % 0
|
||||
.rr F
|
||||
.\}
|
||||
.TH visudo 8 "1.5.8" "17/Oct/98" "MAINTENANCE COMMANDS"
|
||||
.TH visudo 8 "1.5.9" "17/Jan/99" "MAINTENANCE COMMANDS"
|
||||
.UC
|
||||
.if n .hy 0
|
||||
.if n .na
|
||||
|
@@ -59,11 +59,11 @@ Either someone is currently editing the I<sudoers> file
|
||||
or there is a stale sudoers lock file (/etc/stmp by default)
|
||||
that you need to delete.
|
||||
|
||||
= item /etc/stmp: Permission denied
|
||||
=item /etc/stmp: Permission denied
|
||||
|
||||
You didn't run B<visudo> as root.
|
||||
|
||||
= item Can't find you in the passwd database
|
||||
=item Can't find you in the passwd database
|
||||
|
||||
Your userid does not appear in the passwd file.
|
||||
|
||||
|
Reference in New Issue
Block a user