mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
b0dbf98576
PR: ports/166093 Submitted by: jgh@ Approved by: maintainer, rfarmer@predatorlabs.net Feature safe: yes
8 lines
182 B
Bash
8 lines
182 B
Bash
#!/bin/sh
|
|
|
|
if [ "$2" = "DEINSTALL" ]; then
|
|
/bin/cp /etc/shells /etc/shells.bak
|
|
/usr/bin/grep -v '/usr/local/bin/fish' /etc/shells.bak >> /etc/shells
|
|
/bin/rm -f /etc/shells.bak
|
|
fi
|