preload: change state file permissions to 640

This commit is contained in:
Mark Rosenstand 2006-12-15 10:50:40 +01:00
parent d789f701ae
commit 795a49ac95
2 changed files with 4 additions and 4 deletions

View File

@ -6,6 +6,6 @@ drwxr-xr-x root/root usr/sbin/
drwxr-xr-x root/root var/
drwxr-xr-x root/root var/lib/
drwxr-xr-x root/root var/lib/preload/
-rw-rw---- root/root var/lib/preload/preload.state (EMPTY)
-rw-r----- root/root var/lib/preload/preload.state (EMPTY)
drwxr-xr-x root/root var/log/
-rw-r--r-- root/root var/log/preload.log (EMPTY)

View File

@ -5,7 +5,7 @@
name=preload
version=0.4
release=2
release=3
source=(http://dl.sourceforge.net/sourceforge/preload/preload-$version.tar.gz)
build() {
@ -21,7 +21,7 @@ build() {
rm -rv usr/man
rm -r usr/share/doc
rmdir usr/share
# preload.state is installed 644 but changed to 660 on first exit,
# preload.state is installed 644 but changed to 640 on first run,
# so we change the mode in the package to avoid rejmerge.
chmod -v 660 var/lib/preload/preload.state
chmod -v 640 var/lib/preload/preload.state
}