mirror of
https://github.com/samba-team/samba.git
synced 2025-02-04 17:47:26 +03:00
bb13b34820
Move form stable to stable distribution names based hives.
17 lines
383 B
Bash
17 lines
383 B
Bash
#!/bin/sh
|
|
#
|
|
# cron script to save a backup copy of /etc/samba/smbpasswd in /var/backups.
|
|
#
|
|
# Written by Eloy A. Paris <peloy@debian.org> for the Debian project.
|
|
#
|
|
|
|
BAK=/var/backups
|
|
|
|
umask 022
|
|
if cd $BAK; then
|
|
# Make sure /etc/samba/smbpasswd exists
|
|
if [ -f /etc/samba/smbpasswd ]; then
|
|
cmp -s smbpasswd.bak /etc/samba/smbpasswd || cp -p /etc/samba/smbpasswd smbpasswd.bak
|
|
fi
|
|
fi
|