summaryrefslogtreecommitdiffstats
path: root/tmp/post_upgrade_command
blob: ed49d0a3b4ce99221a4a0f2481a0e893bbba73cd (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
#!/bin/sh

/etc/rc.conf_mount_rw

KERNELTYPE=`cat /boot/kernel/pfsense_kernel.txt`
if [ $KERNELTYPE = "wrap" ]; then
	if [ -f /kernels/kernel_wrap.gz ]; then 
		tar xzpf /kernels/kernel_wrap.gz -C /boot/
		cp /etc/ttys_wrap /etc/ttys
	fi
fi
if [ $KERNELTYPE = "Developers" ]; then
	if [ -f /kernels/kernel_Dev.gz ]; then 
		tar xzpf /kernels/kernel_Dev.gz -C /boot/
		cp  /boot/kernel/kernel.gz
	fi
fi
if [ $KERNELTYPE = "SMP" ]; then
	if [ -f /kernels/kernel_SMP.gz ]; then 
		tar xzpf /kernels/kernel_SMP.gz -C /boot/
	fi
fi
if [ $KERNELTYPE = "UP" ]; then
	if [ -f /kernels/kernel_SMP.gz ]; then 
		tar xzpf /kernels/kernel_uniprocessor.gz -C /boot/
	fi
fi

# Detect interactive logins and display the shell
echo "if [ \`env | grep SSH_TTY | wc -l\` -gt 0 ] || [ \`env | grep cons25 | wc -l\` -gt 0 ]; then" > $CVS_CO_DIR/root/.shrc
echo "        /etc/rc.initial" >> $CVS_CO_DIR/root/.shrc
echo "        exit" >> $CVS_CO_DIR/root/.shrc
echo "fi" >> $CVS_CO_DIR/root/.shrc
echo "if [ \`env | grep SSH_TTY | wc -l\` -gt 0 ] || [ \`env | grep cons25 | wc -l\` -gt 0 ]; then" >> $CVS_CO_DIR/root/.profile
echo "        /etc/rc.initial" >> $CVS_CO_DIR/root/.profile
echo "        exit" >> $CVS_CO_DIR/root/.profile
echo "fi" >> $CVS_CO_DIR/root/.profile

# Now turn on or off serial console as needed
php -f /tmp/post_upgrade_command.php

# Remove any previous MD5 sum files
rm -f /root/*.md5

# File moved to pfSense php shell (pfSsh.php)
rm -rf /usr/local/sbin/cvs_sync.sh

PFSENSETYPE=`cat /etc/platform`
if [ $PFSENSETYPE = "embedded" ]; then
	cp /etc/ttys_wrap /etc/ttys
fi

if [ -f /usr/local/sbin/php ]; then
	rm /usr/local/sbin/php
fi

OpenPOWER on IntegriCloud