diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-09-29 07:04:02 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-09-29 07:04:02 +0000 |
commit | 1241032b014375e84d28fcb3630f98a8f8432f59 (patch) | |
tree | 992f2d8a09aea4596fd2645ee0b0e21bb9e85498 /package | |
parent | a10df15d383758ace440e487b2e7e705c330f548 (diff) |
add missing codepages, add syslog support and use it by default
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1996 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/samba/Makefile | 2 | ||||
-rw-r--r-- | package/samba/files/samba.init | 2 | ||||
-rw-r--r-- | package/samba/files/smb.conf | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/package/samba/Makefile b/package/samba/Makefile index 7a083b3a4..566e604a0 100644 --- a/package/samba/Makefile +++ b/package/samba/Makefile @@ -119,6 +119,7 @@ $(PKG_BUILD_DIR)/.built: $(DISABLE_NLS) \ --with-lockdir=/var/run/samba \ --with-privatedir=/etc/samba \ + --with-syslog \ ); $(MAKE) -C $(PKG_BUILD_DIR)/source \ $(TARGET_CONFIGURE_OPTS) \ @@ -160,6 +161,7 @@ $(IPKG_SAMBA): install -m0755 $(PKG_BUILD_DIR)/source/bin/smbd.shared $(IDIR_SAMBA)/usr/sbin/smbd install -d -m0755 $(IDIR_SAMBA)/usr/share/samba install -m0644 $(PKG_INSTALL_DIR)/usr/share/samba/codepage.{437,850} $(IDIR_SAMBA)/usr/share/samba/ + install -m0644 $(PKG_INSTALL_DIR)/usr/share/samba/unicode_map.{437,850} $(IDIR_SAMBA)/usr/share/samba/ $(RSTRIP) $(IDIR_SAMBA) $(IPKG_BUILD) $(IDIR_SAMBA) $(PACKAGE_DIR) diff --git a/package/samba/files/samba.init b/package/samba/files/samba.init index 43ab372ca..c3c600ae3 100644 --- a/package/samba/files/samba.init +++ b/package/samba/files/samba.init @@ -1,7 +1,6 @@ #!/bin/sh DEFAULT=/etc/default/samba -LOG_D=/var/log/samba RUN_D=/var/run/samba NMBD_PID_F=$RUN_D/nmbd.pid SMBD_PID_F=$RUN_D/smbd.pid @@ -9,7 +8,6 @@ SMBD_PID_F=$RUN_D/smbd.pid case $1 in start) - mkdir -p $LOG_D mkdir -p $RUN_D nmbd -D $NMBD_OPTIONS smbd -D $SMBD_OPTIONS diff --git a/package/samba/files/smb.conf b/package/samba/files/smb.conf index 4c4cd1dab..5a2f6ccaa 100644 --- a/package/samba/files/smb.conf +++ b/package/samba/files/smb.conf @@ -1,4 +1,6 @@ [global] + syslog = 0 + syslog only = yes workgroup = OpenWrt security = share guest account = nobody |