代码搜索:SAMBA
找到约 3,600 项符合「SAMBA」的源代码
代码结果 3,600
www.eeworm.com/read/238372/4615704
docs samba.docs
README
Roadmap
WHATSNEW.txt
docs/htmldocs/Samba3-HOWTO/diagnosis.html
www.eeworm.com/read/238372/4615710
postinst samba.postinst
#!/bin/sh -e
#
# Post-installation script for the Samba package for Debian GNU/Linux
#
#
case "$1" in
configure)
# continue below
;;
abort-upgrade|abort-remove|abort-deconfigure)
exit 0
;;
www.eeworm.com/read/238372/4615728
config samba.config
#/bin/sh -e
#
#
# Source debconf library.
. /usr/share/debconf/confmodule
# Function for grabbing a parameter from an smb.conf file
smbconf_retr() {
if [ -z "$1" ]; then
return
fi
if [ -n "$2"
www.eeworm.com/read/238372/4615735
dirs samba.dirs
usr/bin
usr/sbin
var/log/samba
var/lib/samba/printers/W32X86
var/lib/samba/printers/WIN40
var/run/samba
var/cache/samba
www.eeworm.com/read/238372/4615740
prerm samba.prerm
#!/bin/sh -e
if [ "$1" = upgrade -a -n "$2" ] && dpkg --compare-versions "$2" lt 2.99 \
&& [ -e /var/lib/samba/passdb.tdb -a ! -e /etc/samba/smbpasswd ]
then
pdbedit -i tdbsam -e smbpasswd
rm -f
www.eeworm.com/read/238372/4615745
postrm samba.postrm
#!/bin/sh -e
#
#
if [ "$1" = purge ]; then
# Remove Samba's state files, both volatile and non-volatile
rm -Rf /var/run/samba/ /var/cache/samba/ /var/lib/samba
# Remove log files
rm -Rf /var/lo
www.eeworm.com/read/238372/4615756
pamd samba.pamd
@include common-auth
@include common-account
@include common-session
www.eeworm.com/read/238372/4615758
files samba.files
usr/bin/smbstatus
usr/bin/smbcontrol
usr/bin/tdbbackup
usr/bin/pdbedit
usr/sbin/smbd
usr/sbin/nmbd
usr/sbin/mksmbpasswd
usr/lib/samba/vfs
usr/lib/samba/idmap
usr/share/man/man1/smbcontrol.1
usr/share/
www.eeworm.com/read/238372/4615762
templates samba.templates
Template: samba/generate_smbpasswd
Type: boolean
Default: false
_Description: Create samba password database, /var/lib/samba/passdb.tdb?
To be compatible with the defaults in most versions of Windows
www.eeworm.com/read/238372/4615768
init samba.init
#!/bin/sh
#
# Start/stops the Samba daemons (nmbd and smbd).
#
#
# Defaults
RUN_MODE="daemons"
# Reads config file (will override defaults above)
[ -r /etc/default/samba ] && . /etc/default/samba
N