summaryrefslogtreecommitdiffstats
path: root/tests/su/02/env_special_root-options_-l-p.exp
blob: 8ddae3d4c16065fe6744ae843878d77f7636d021 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/expect

if {$argc == 1} {
	set command     [lindex $argv 0]
} else {
	set command     ""
}


set timeout 2
expect_after default {puts "\nFAIL"; exit 1}

spawn /bin/bash
expect "# "

send "id\r"
expect "uid=0(root) gid=0(root) groups=0(root)\r"
expect "# "

send "export PATH=bar:\$PATH\r"
expect "# "
send "echo \"PATH=\\\"\$PATH\\\"\"\r"
expect "# "

#=============================================================================
#
# su -l -p root, make a login shell, but preserve environment
# However, PATH is not preserved, but set to what it would be with login
# for root
#
#=============================================================================
send "/bin/su -p $command - root\r"
expect "# "

send "id\n"
expect "uid=0(root) gid=0(root) groups=0(root)\r"
expect "# "

send_user "\n# Even with -p, PATH is reset"
send "\r"
expect "# "

send "echo \"PATH=\\\"\$PATH\\\"\"\r"
expect "PATH=\"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\"\r"
expect "# "

send "echo \"'\$HOME'\$USER'\$LOGNAME'\$SHELL'\"\r"
expect "'/root'root'root'/bin/bash'\r"
expect "# "

send "exit\r"
expect "# "


puts "\nPASS"
exit 0