vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| What is wrong?? in my script.. #!/sbin/runscript start() { ebegin "Start szyfrowanej partycji" if [ -b /dev/mapper/md6-aes ] then /bin/cryptsetup remove md6-aes fi /bin/cryptsetup create md6-aes /dev/md6 eend $? ebegin "Montowanie szyfrowanej partycji" mount /dev/mapper/md6-aes /work eend $? } stop() { ebegin "Stop szyfrowanej partycji" umount /work eend $? ebegin "Odmontowanie szyfrowaniej partycji" /bin/cryptsetup remove md6-aes eend $? } when I start /etc/init.d/cryptinit start then ERROR: "/etc/init.d/cryptinit" has syntax errors in it: not executing... |