wok diff rsync/receipt @ rev 19117

sqlite: fix arm build
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 07 17:36:05 2016 +0200 (2016-05-07)
parents d211311bd968
children 49d803122cfe
line diff
     1.1 --- a/rsync/receipt	Thu Sep 03 09:59:14 2015 +0200
     1.2 +++ b/rsync/receipt	Sat May 07 17:36:05 2016 +0200
     1.3 @@ -47,12 +47,12 @@
     1.4  	cp -a $stuff/usr $fs
     1.5  	chown root.root $fs/etc/init.d/*
     1.6  	chmod 0644 $fs/etc/rsyncd.conf
     1.7 -	grep -q rsync $1/etc/inetd.conf || cat >> $1/etc/inetd.conf <<EOT
     1.8 +	grep -q rsync "$1/etc/inetd.conf" || cat >> "$1/etc/inetd.conf" <<EOT
     1.9  #rsync	stream	tcp	nowait	root	rsync	rsync	-daemon
    1.10  EOT
    1.11  }
    1.12  
    1.13  post_remove()
    1.14  {
    1.15 -	grep -q rsync $1/etc/inetd.conf && sed -i '/rsync/d' $1/etc/inetd.conf
    1.16 +	grep -q rsync "$1/etc/inetd.conf" && sed -i '/rsync/d' "$1/etc/inetd.conf"
    1.17  }