mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
0e8fd33987
(This used to be commit 291551d807
)
16 lines
228 B
Bash
Executable File
16 lines
228 B
Bash
Executable File
#!/bin/sh
|
|
BINDIR=$1
|
|
shift
|
|
|
|
for p in $*; do
|
|
if [ -f $BINDIR/$p.old ]; then
|
|
echo Restoring $BINDIR/$p.old as $BINDIR/$p
|
|
mv $BINDIR/$p $BINDIR/$p.new
|
|
mv $BINDIR/$p.old $BINDIR/$p
|
|
rm -f $BINDIR/$p.new
|
|
fi
|
|
done
|
|
|
|
exit 0
|
|
|