source: ipk/source.sh4/network_samba/CONTROL/postinst@ 35855

Last change on this file since 35855 was 33713, checked in by Stephan, 11 years ago

fix

File size: 983 bytes
RevLine 
[13993]1#!/bin/sh
[23439]2INSTDIR="$1"
[13993]3
[33570]4echo INSTDIR: $INSTDIR
[33574]5export PATH=$PATH:/var/swap/bin:/mnt/swapextensions/bin:/var/bin
[33703]6export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/var/swap/lib:/mnt/swapextensions/lib:/var/lib
[33570]7
[24435]8if [ -f /mnt/config/start-config ]; then
[33574]9 echo "enable samba autostart on /mnt/config/start-config"
10 sed s#"sambaserver=n"#"sambaserver=y"#g -i /mnt/config/start-config
[24435]11fi
12
[33712]13echo "if not exist, use restore smb.conf"
14if [ ! -e /mnt/config/smb.conf ]; then
15 cp /etc/titan.restore/mnt/config/smb.conf /mnt/config/smb.conf
[33573]16fi
[33566]17
[33712]18echo "check if smbpasswd exists"
[33713]19if [ ! -e $INSTDIR/etc/samba/private/smbpasswd ]; then
20 touch $INSTDIR/etc/samba/private/smbpasswd
[33712]21fi
[24435]22
[33706]23echo "update smb.conf"
[33707]24sed "s!private dir = .*!private dir = $INSTDIR/etc/samba/private!" -i /mnt/config/smb.conf
25sed "s!smb passwd file = .*!smb passwd file = $INSTDIR/etc/samba/private/smbpasswd!" -i /mnt/config/smb.conf
[33706]26
[33577]27echo "start samba"
[33576]28smbd -D -s /mnt/config/smb.conf
29sleep 1
30nmbd -D -s /mnt/config/smb.conf
[33574]31
[24435]32exit 0
Note: See TracBrowser for help on using the repository browser.