9 lines
285 B
Bash
Executable File
9 lines
285 B
Bash
Executable File
#!/bin/sh
|
|
# ESP Package Manager v6.0.2 Dr.Web Edition
|
|
if ! [ -f /etc/drweb/drweb32.ini ]; then
|
|
cp /opt/drweb/doc/drweb32.ini /etc/drweb
|
|
fi
|
|
echo "#!/bin/sh" > /opt/drweb/ldwrap.sh
|
|
echo 'exec /opt/drweb/`basename $0.real` "$@"' >> /opt/drweb/ldwrap.sh
|
|
chmod 755 /opt/drweb/ldwrap.sh
|