blob: 38b7f3ec61bed1bf282196f333982686d3af25b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
#
# Test parsing of NOTBEFORE/NOTAFTER using local time zone
#
: ${VISUDO=visudo}
$VISUDO -cf - <<-EOF
user1 ALL = NOTBEFORE=20151201235900 /usr/bin/id
user2 ALL = NOTBEFORE=20151201235900.2 /usr/bin/id
user3 ALL = NOTBEFORE=20151201235900\,2 /usr/bin/id
user4 ALL = NOTBEFORE=2015120123 /usr/bin/id
EOF
|