wok rev 20319

Up tazlito (501)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun May 20 13:28:18 2018 +0200 (2018-05-20)
parents 2bf373a3a59f
children 9502f43f5f21
files autoblog/receipt bash/receipt btmgr/receipt busybox/receipt ccid/receipt compiz/receipt cyrus-imapd/receipt distcc/receipt dovecot/receipt dwm/receipt eggwm/receipt enlightenment-pam/receipt enlightenment/receipt etherboot/receipt lxde/receipt lxqt-common/receipt mariadb/receipt mate/receipt mgetty/receipt mysql/receipt nagios-nrpe/receipt nagios-plugins/receipt ncmpcpp/receipt nconf/receipt ndoutils/receipt obmenu/receipt ocsinventory-server/receipt ocsreports/receipt openldap/receipt pcmanfm-legacy/receipt pekwm/receipt php-common/receipt polipo/receipt postfix/receipt postgresql/receipt ppp/receipt privoxy/receipt razorqt/receipt rclone/receipt remind/receipt sane-backends/receipt tazlito/receipt tuxtype/receipt urbackup-server/receipt usbmuxd/receipt wordpress/receipt xfce4-ristretto/receipt yasr/receipt
line diff
     1.1 --- a/autoblog/receipt	Fri May 18 22:33:04 2018 +0200
     1.2 +++ b/autoblog/receipt	Sun May 20 13:28:18 2018 +0200
     1.3 @@ -42,5 +42,5 @@
     1.4  	mytz="$(cat "$1/etc/TZ")"
     1.5  	[ -n "$mytz" ] && sed  -i "s|Europe/Paris|$mytz|" "$1/var/www/$PACKAGE/index.php"
     1.6  	chown -R www "$1/var/www/$PACKAGE"
     1.7 -	[ -z "$quiet" ] && echo "You should update /var/www/$PACKAGE/vvb.ini now..."
     1.8 +	[ -z "$quiet" ] && echo -e "\nYou should update /var/www/$PACKAGE/vvb.ini now..."
     1.9  }
     2.1 --- a/bash/receipt	Fri May 18 22:33:04 2018 +0200
     2.2 +++ b/bash/receipt	Sun May 20 13:28:18 2018 +0200
     2.3 @@ -97,6 +97,7 @@
     2.4  	# Exit function in non-interactive mode (when user can't answer question)
     2.5  	! tty -s && return
     2.6  
     2.7 +	echo
     2.8  	echo -n 'Do you want to set Bash to default (y/N) ? : '
     2.9  	read -t 30 answer
    2.10  	[ "$answer" != 'y' ] && return
     3.1 --- a/btmgr/receipt	Fri May 18 22:33:04 2018 +0200
     3.2 +++ b/btmgr/receipt	Sun May 20 13:28:18 2018 +0200
     3.3 @@ -35,6 +35,7 @@
     3.4  # Pre and post install commands for Tazpkg.
     3.5  post_install()
     3.6  {
     3.7 +	echo
     3.8  	echo "----"
     3.9  	echo "You can create boot floppy with:"
    3.10  	echo "# cp /usr/share/boot/btmgr /dev/fd0"
     4.1 --- a/busybox/receipt	Fri May 18 22:33:04 2018 +0200
     4.2 +++ b/busybox/receipt	Sun May 20 13:28:18 2018 +0200
     4.3 @@ -221,6 +221,7 @@
     4.4  			*) continue ;;
     4.5  		esac
     4.6  		if [ -z "$answer" ]; then
     4.7 +			echo
     4.8  			echo -n "Keep installed GNU utilities ? "
     4.9  			read -t 30 answer	# by default: keep
    4.10  			case "$answer" in
     5.1 --- a/ccid/receipt	Fri May 18 22:33:04 2018 +0200
     5.2 +++ b/ccid/receipt	Sun May 20 13:28:18 2018 +0200
     5.3 @@ -44,6 +44,7 @@
     5.4  {
     5.5  	# addgroup pcscd if needed                                                                                                                
     5.6  	if ! grep -q pcscd "$1/etc/group"; then
     5.7 +		echo
     5.8  		echo -n "Adding group pcscd..."
     5.9  		chroot "$1/" addgroup pcscd
    5.10  		status
     6.1 --- a/compiz/receipt	Fri May 18 22:33:04 2018 +0200
     6.2 +++ b/compiz/receipt	Sun May 20 13:28:18 2018 +0200
     6.3 @@ -30,6 +30,7 @@
     6.4  	res=$(cat $root/etc/slim.conf | grep ^session | sed s/"sessions. *"//)
     6.5  	# Adding WM to SLIM available sessions.
     6.6  	if ! echo "$res" | grep -q $PACKAGE; then
     6.7 +		echo
     6.8  		echo -n "Adding $PACKAGE to /etc/slim.conf..."
     6.9  		sed -i "s/^sessions.*/sessions            ${res},$PACKAGE/" $root/etc/slim.conf
    6.10  		status
     7.1 --- a/cyrus-imapd/receipt	Fri May 18 22:33:04 2018 +0200
     7.2 +++ b/cyrus-imapd/receipt	Sun May 20 13:28:18 2018 +0200
     7.3 @@ -52,6 +52,7 @@
     7.4  {
     7.5          # adduser cyrus if needed
     7.6  	if ! grep -q cyrus "$1/etc/passwd"; then
     7.7 +		echo
     7.8  		echo -n "Adding user cyrus..."
     7.9  		chroot "$1/" adduser cyrus -D -H -S -h /tmp
    7.10  		chroot "$1/" sh -c 'echo "cyrus:cyrus" | chpasswd -m > /dev/null'
    7.11 @@ -59,6 +60,7 @@
    7.12  	fi
    7.13  	# addgroup mail if needed
    7.14  	if ! grep -q mail "$1/etc/group"; then
    7.15 +		echo
    7.16  		echo -n "Adding group mail..."
    7.17  		chroot "$1/" sh -c 'addgroup mail && addgroup cyrus mail'
    7.18  		status
    7.19 @@ -84,6 +86,7 @@
    7.20  	[ "$1" ] || /etc/init.d/$PACKAGE start
    7.21  	if [ -f "$1/etc/init.d/postfix" ]; then
    7.22  		if ! grep -v ^# "$1/etc/postfix/main.cf" | grep -q lmtp:unix; then
    7.23 +			echo
    7.24  			echo "Append to /etc/postfix/main.cf:"
    7.25  			echo -n "    "
    7.26  			echo "mailbox_transport = lmtp:unix:/var/imap/socket/lmtp" | \
    7.27 @@ -93,9 +96,9 @@
    7.28  			fi
    7.29  		fi
    7.30  	fi
    7.31 -	msg="Creating mailbox for"
    7.32 +	msg="\\nCreating mailbox for"
    7.33  	for i in root $(awk -F: '{ if ($3 >= 1000) print $1 }' < "$1/etc/passwd"); do
    7.34 -		echo -n "$msg $i"
    7.35 +		echo -en "$msg $i"
    7.36  		msg=","
    7.37  	done
    7.38  	echo ""
     8.1 --- a/distcc/receipt	Fri May 18 22:33:04 2018 +0200
     8.2 +++ b/distcc/receipt	Sun May 20 13:28:18 2018 +0200
     8.3 @@ -47,6 +47,7 @@
     8.4  post_install()
     8.5  {
     8.6  	if ! grep -q nagios "$1/etc/passwd"; then
     8.7 +		echo
     8.8  		echo -n "Adding user/group nagios..."
     8.9  		chroot "$1/" addgroup -S distcc
    8.10  		chroot "$1/" adduser -S -D -H -G distcc distcc
     9.1 --- a/dovecot/receipt	Fri May 18 22:33:04 2018 +0200
     9.2 +++ b/dovecot/receipt	Sun May 20 13:28:18 2018 +0200
     9.3 @@ -87,6 +87,7 @@
     9.4  	group=dovecot
     9.5  	
     9.6  	if ! grep -q $user "$1/etc/passwd"; then
     9.7 +		echo
     9.8  		echo -n "Adding user/group $user..."
     9.9  		chroot "$1/" addgroup -g 76 -S $group
    9.10  		chroot "$1/" adduser -u 76 -S -D -H -G $group $user
    10.1 --- a/dwm/receipt	Fri May 18 22:33:04 2018 +0200
    10.2 +++ b/dwm/receipt	Sun May 20 13:28:18 2018 +0200
    10.3 @@ -45,6 +45,7 @@
    10.4  	res=$(cat "$1/etc/slim.conf" | grep ^session | sed s/"sessions. *"//)
    10.5  	# Adding WM to SLIM available sessions.
    10.6  	if ! echo "$res" | grep -q $PACKAGE; then
    10.7 +		echo
    10.8  		echo -n "Adding $PACKAGE to /etc/slim.conf..."
    10.9  		sed -i "s/^sessions.*/sessions            ${res},dwm/" /etc/slim.conf
   10.10  		status
    11.1 --- a/eggwm/receipt	Fri May 18 22:33:04 2018 +0200
    11.2 +++ b/eggwm/receipt	Sun May 20 13:28:18 2018 +0200
    11.3 @@ -37,6 +37,7 @@
    11.4  	res=$(cat $root/etc/slim.conf | grep ^session | sed s/"sessions. *"//)
    11.5  	# Adding WM to SLIM available sessions.
    11.6  	if ! echo "$res" | grep -q $PACKAGE; then
    11.7 +		echo
    11.8  		echo -n "Adding $PACKAGE to /etc/slim.conf..."
    11.9  		sed -i "s/^sessions.*/sessions            ${res},$PACKAGE/" $root/etc/slim.conf
   11.10  		status
    12.1 --- a/enlightenment-pam/receipt	Fri May 18 22:33:04 2018 +0200
    12.2 +++ b/enlightenment-pam/receipt	Sun May 20 13:28:18 2018 +0200
    12.3 @@ -68,6 +68,7 @@
    12.4  		| sed s/,e17//)
    12.5  	# Adding WM to SLIM available sessions.
    12.6  	if ! echo "$res" | grep -q enlightenment; then
    12.7 +		echo
    12.8  		echo -n "Adding enlightenment to /etc/slim.conf..."
    12.9  		sed -i "s/^sessions.*/sessions            enlightenment,${res}/" \
   12.10  			/etc/slim.conf
    13.1 --- a/enlightenment/receipt	Fri May 18 22:33:04 2018 +0200
    13.2 +++ b/enlightenment/receipt	Sun May 20 13:28:18 2018 +0200
    13.3 @@ -68,6 +68,7 @@
    13.4  		| sed s/,e17//)
    13.5  	# Adding WM to SLIM available sessions.
    13.6  	if ! echo "$res" | grep -q enlightenment; then
    13.7 +		echo
    13.8  		echo -n "Adding enlightenment to /etc/slim.conf..."
    13.9  		sed -i "s/^sessions.*/sessions            enlightenment,${res}xs/" \
   13.10  			/etc/slim.conf
    14.1 --- a/etherboot/receipt	Fri May 18 22:33:04 2018 +0200
    14.2 +++ b/etherboot/receipt	Sun May 20 13:28:18 2018 +0200
    14.3 @@ -45,6 +45,7 @@
    14.4  LABEL web zeb\
    14.5  	MENU LABEL Web Boot\
    14.6  	KERNEL /boot/etherboot|' $1/boot/isolinux/isolinux.cfg
    14.7 +	echo
    14.8  	echo "----"
    14.9  	echo "You can create pxe/nbi boot floppy with:"
   14.10  	echo "# cp /usr/share/boot/etherboot /dev/fd0"
    15.1 --- a/lxde/receipt	Fri May 18 22:33:04 2018 +0200
    15.2 +++ b/lxde/receipt	Sun May 20 13:28:18 2018 +0200
    15.3 @@ -31,6 +31,7 @@
    15.4  {
    15.5  	res=$(cat "$1/etc/slim.conf" | grep ^session | sed s/"sessions. *"//)
    15.6  	if ! echo "$res" | grep -q $PACKAGE; then
    15.7 +		echo
    15.8  		echo -n "Adding $PACKAGE to /etc/slim.conf..."
    15.9  		sed -i "s/^sessions.*/sessions            ${res},$PACKAGE/" "$1/etc/slim.conf"
   15.10  		status
    16.1 --- a/lxqt-common/receipt	Fri May 18 22:33:04 2018 +0200
    16.2 +++ b/lxqt-common/receipt	Sun May 20 13:28:18 2018 +0200
    16.3 @@ -42,6 +42,7 @@
    16.4          res=$(cat "$1/etc/slim.conf" | grep ^session | sed s/"sessions. *"//)
    16.5          # Adding WM to SLIM available sessions.
    16.6          if ! echo "$res" | grep -q $PACKAGE; then
    16.7 +		echo
    16.8                  echo -n "Adding lxqt to /etc/slim.conf..."
    16.9                  sed -i "s/^sessions.*/sessions            ${res},lxqt/" "$1/etc/slim.conf"
   16.10                  status
    17.1 --- a/mariadb/receipt	Fri May 18 22:33:04 2018 +0200
    17.2 +++ b/mariadb/receipt	Sun May 20 13:28:18 2018 +0200
    17.3 @@ -84,6 +84,7 @@
    17.4  	group=mysql
    17.5  	
    17.6  	if ! grep -q $user "$1/etc/passwd"; then
    17.7 +		echo
    17.8  		echo -n "Adding user/group $user..."
    17.9  		chroot "$1/" addgroup -S $group
   17.10  		chroot "$1/" adduser -s /bin/false -S -D -H -G $group $user
    18.1 --- a/mate/receipt	Fri May 18 22:33:04 2018 +0200
    18.2 +++ b/mate/receipt	Sun May 20 13:28:18 2018 +0200
    18.3 @@ -38,6 +38,7 @@
    18.4  	root=$1
    18.5  	res=$(cat $root/etc/slim.conf | grep ^session | sed s/"sessions. *"//)
    18.6  	if ! echo "$res" | grep -q $PACKAGE; then
    18.7 +		echo
    18.8  		echo -n "Adding $PACKAGE to /etc/slim.conf..."
    18.9  		sed -i "s/^sessions.*/sessions            ${res},$PACKAGE/" $root/etc/slim.conf
   18.10  		status
    19.1 --- a/mgetty/receipt	Fri May 18 22:33:04 2018 +0200
    19.2 +++ b/mgetty/receipt	Sun May 20 13:28:18 2018 +0200
    19.3 @@ -55,6 +55,7 @@
    19.4  {
    19.5          # adduser fax if needed
    19.6  	if ! grep -q fax "$1/etc/passwd"; then
    19.7 +		echo
    19.8  		echo -n "Adding user fax..."
    19.9  		chroot "$1/" adduser fax -D -H -S
   19.10  		status
    20.1 --- a/mysql/receipt	Fri May 18 22:33:04 2018 +0200
    20.2 +++ b/mysql/receipt	Sun May 20 13:28:18 2018 +0200
    20.3 @@ -102,6 +102,7 @@
    20.4  	group=mysql
    20.5  	
    20.6  	if ! grep -q $user "$1/etc/passwd"; then
    20.7 +		echo
    20.8  		echo -n "Adding user/group $user..."
    20.9  		chroot "$1/" addgroup -S $group
   20.10  		chroot "$1/" adduser -s /bin/false -S -D -H -G $group $user
   20.11 @@ -109,6 +110,7 @@
   20.12  	fi
   20.13  	# adduser mysql if needed
   20.14  	if ! grep -q ${user} "$1/etc/passwd"; then
   20.15 +		echo
   20.16  		echo -n "Adding user MySQL..."
   20.17  		chroot "$1/" /bin/adduser -s /bin/false -h /dev/null \
   20.18  			-g "MySQL Daemon user" -u 27 -H -D -S -G ${group} ${user}
    21.1 --- a/nagios-nrpe/receipt	Fri May 18 22:33:04 2018 +0200
    21.2 +++ b/nagios-nrpe/receipt	Sun May 20 13:28:18 2018 +0200
    21.3 @@ -60,6 +60,7 @@
    21.4  post_install()
    21.5  {
    21.6  	if ! grep -q nagios "$1/etc/passwd"; then
    21.7 +		echo
    21.8  		echo -n "Adding user nagios..."
    21.9  		chroot "$1/" adduser -S -D -H nagios
   21.10  		status
    22.1 --- a/nagios-plugins/receipt	Fri May 18 22:33:04 2018 +0200
    22.2 +++ b/nagios-plugins/receipt	Sun May 20 13:28:18 2018 +0200
    22.3 @@ -49,6 +49,7 @@
    22.4  post_install()
    22.5  {
    22.6  	if ! grep -q nagios "$1/etc/passwd"; then
    22.7 +		echo
    22.8  		echo -n "Adding user/group nagios..."
    22.9  		chroot "$1/" addgroup -S nagios
   22.10  		chroot "$1/" adduser -S -D -H -G nagios nagios
    23.1 --- a/ncmpcpp/receipt	Fri May 18 22:33:04 2018 +0200
    23.2 +++ b/ncmpcpp/receipt	Sun May 20 13:28:18 2018 +0200
    23.3 @@ -42,6 +42,7 @@
    23.4  {
    23.5  	for i in $(ls "$1/home" 2> /dev/null); do
    23.6  		[ -d "$1/home/$i/.ncmpcpp" ] && continue
    23.7 +		echo
    23.8  		echo -n "Enabling configuration files for $i ..."
    23.9  		cp -a "$1/etc/skel/.ncmpcpp" "$1/home/$i/"
   23.10  		sed -i 's|#mpd_music_dir = ""|mpd_music_dir = "/home/'$i'/music"|' "/home/$i/.ncmpcpp/config"
    24.1 --- a/nconf/receipt	Fri May 18 22:33:04 2018 +0200
    24.2 +++ b/nconf/receipt	Sun May 20 13:28:18 2018 +0200
    24.3 @@ -70,11 +70,13 @@
    24.4  	# Minimal config for NConf.
    24.5  	if [ -z "$1" ]; then
    24.6  		if ( ! mysqladmin -s ping > /dev/null ); then
    24.7 +			echo
    24.8  			echo "Starting MySQL server"
    24.9  			( /etc/init.d/mysql start ; status  ) || exit 
   24.10  			sleep 4 #let the mysql daemon start
   24.11  		fi
   24.12  		if ( ! mysql -u root -Be 'show databases' | grep -q $db ); then
   24.13 +			echo
   24.14  			echo -n "Create $db database"
   24.15  			mysql -Be "create database $db" ; status
   24.16  			# We suppose that $DB_USER user does not exist.
    25.1 --- a/ndoutils/receipt	Fri May 18 22:33:04 2018 +0200
    25.2 +++ b/ndoutils/receipt	Sun May 20 13:28:18 2018 +0200
    25.3 @@ -73,6 +73,7 @@
    25.4  post_install()
    25.5  {
    25.6  	if ! grep -q nagios "$1/etc/passwd"; then
    25.7 +		echo
    25.8  		echo -n "Adding user nagios..."
    25.9  		chroot "$1/" adduser -S -D -H nagios
   25.10  		status
    26.1 --- a/obmenu/receipt	Fri May 18 22:33:04 2018 +0200
    26.2 +++ b/obmenu/receipt	Sun May 20 13:28:18 2018 +0200
    26.3 @@ -31,6 +31,7 @@
    26.4  
    26.5  post_install()
    26.6  {
    26.7 +	echo
    26.8  	echo -n "Enabling configuration file..."
    26.9  	cp "$1/home/tux/.config/openbox/menu.xml" "$1/root/.config/openbox"
   26.10  	status
    27.1 --- a/ocsinventory-server/receipt	Fri May 18 22:33:04 2018 +0200
    27.2 +++ b/ocsinventory-server/receipt	Sun May 20 13:28:18 2018 +0200
    27.3 @@ -58,6 +58,7 @@
    27.4  post_install()
    27.5  {
    27.6  	if [ -z "$1" ]; then
    27.7 +		echo
    27.8  		echo "Now you can connect to http://$(hostname)/ocsreports"
    27.9  		# Restart Apache if is running
   27.10  		[ -f /var/run/apache/httpd.pid ] && /etc/init.d/apache reload
    28.1 --- a/ocsreports/receipt	Fri May 18 22:33:04 2018 +0200
    28.2 +++ b/ocsreports/receipt	Sun May 20 13:28:18 2018 +0200
    28.3 @@ -68,11 +68,13 @@
    28.4  	# Configure every thing for ocsweb.
    28.5  	if [ -z "$1" ]; then
    28.6  		if ( ! mysqladmin -s ping > /dev/null ); then
    28.7 +			echo
    28.8  			echo "Starting MySQL server"
    28.9  			( /etc/init.d/mysql start ; status  ) || exit 
   28.10  			sleep 4 #let the mysql daemon start
   28.11  		fi
   28.12  		if ( ! mysql -Be 'show databases' | grep -q ocsweb ); then
   28.13 +			echo
   28.14  			echo -n "Create $PACKAGE database and schema"
   28.15  			mysql -Be "create database ocsweb CHARACTER SET utf8 COLLATE utf8_bin" ; status
   28.16  			mysql -s -u root ocsweb < /usr/share/$PACKAGE/files/ocsbase_new.sql > /dev/null 2>&1
    29.1 --- a/openldap/receipt	Fri May 18 22:33:04 2018 +0200
    29.2 +++ b/openldap/receipt	Sun May 20 13:28:18 2018 +0200
    29.3 @@ -52,11 +52,13 @@
    29.4  # Pre and post install commands for Tazpkg.
    29.5  post_install()
    29.6  {
    29.7 +	nl="\\n"
    29.8  	( cd "$1/$INSTALLED/" ; grep -l /etc/openldap/slapd.conf */receipt ) | \
    29.9  	while read file; do
   29.10  		pkg=$(dirname $file)
   29.11  		[ "$pkg" = "$PACKAGE" ] && continue
   29.12 -		echo "Reconfiguring $pkg for $PACKAGE..."
   29.13 +		echo -e "${nl}Reconfiguring $pkg for $PACKAGE..."
   29.14 +		nl=""
   29.15  		chroot "$1/" tazpkg reconfigure $pkg
   29.16  	done
   29.17  }
    30.1 --- a/pcmanfm-legacy/receipt	Fri May 18 22:33:04 2018 +0200
    30.2 +++ b/pcmanfm-legacy/receipt	Sun May 20 13:28:18 2018 +0200
    30.3 @@ -63,6 +63,7 @@
    30.4  post_install()
    30.5  {
    30.6  	# update mime-cache
    30.7 +	echo
    30.8  	echo "Updating mime-types database"
    30.9  	chroot "$1/" /usr/bin/update-mime-database /usr/share/mime
   30.10  }
    31.1 --- a/pekwm/receipt	Fri May 18 22:33:04 2018 +0200
    31.2 +++ b/pekwm/receipt	Sun May 20 13:28:18 2018 +0200
    31.3 @@ -55,6 +55,7 @@
    31.4  	res=$(cat "$1/etc/slim.conf" | grep ^session | sed s/"sessions. *"//)
    31.5  	# Adding WM to SLIM available sessions.
    31.6  	if ! echo "$res" | grep -q $PACKAGE; then
    31.7 +		echo
    31.8  		echo -n "Adding $PACKAGE to /etc/slim.conf..."
    31.9  		sed -i "s/^sessions.*/sessions            ${res},$PACKAGE/" "$1/etc/slim.conf"
   31.10  		status
    32.1 --- a/php-common/receipt	Fri May 18 22:33:04 2018 +0200
    32.2 +++ b/php-common/receipt	Sun May 20 13:28:18 2018 +0200
    32.3 @@ -27,6 +27,7 @@
    32.4  {
    32.5  	# Backup existing php.ini
    32.6  	if [ -f "$1/etc/php.ini" ]; then
    32.7 +		echo
    32.8  		echo -n "Creating php.ini backup..."
    32.9  		cp "$1/etc/php.ini" "$1/etc/php.ini.bak"
   32.10  		status
   32.11 @@ -36,6 +37,7 @@
   32.12  {
   32.13  	# Restore original php.ini
   32.14  	if [ -f "$1/etc/php.ini.bak" ]; then
   32.15 +		echo
   32.16  		echo -n "Restoring php.ini backup..."
   32.17  		mv -f "$1/etc/php.ini.bak" "$1/etc/php.ini"
   32.18  		status
    33.1 --- a/polipo/receipt	Fri May 18 22:33:04 2018 +0200
    33.2 +++ b/polipo/receipt	Sun May 20 13:28:18 2018 +0200
    33.3 @@ -33,7 +33,8 @@
    33.4  
    33.5  # Create a disk cache.                  
    33.6  post_install()                          
    33.7 -{  
    33.8 +{
    33.9 +	echo
   33.10  	echo -n "Creating disk cache..."                                    
   33.11  	mkdir "$1/var/cache/polipo"
   33.12  	chown tux.tux "$1/var/cache/polipo"
    34.1 --- a/postfix/receipt	Fri May 18 22:33:04 2018 +0200
    34.2 +++ b/postfix/receipt	Sun May 20 13:28:18 2018 +0200
    34.3 @@ -84,6 +84,7 @@
    34.4  	group=postdrop
    34.5  	
    34.6  	if ! grep -q $user "$1/etc/passwd"; then
    34.7 +		echo
    34.8  		echo -n "Adding user/group $user..."
    34.9  		chroot "$1/" addgroup -S $user
   34.10  		chroot "$1/" adduser -S -D -H -G $user $user
   34.11 @@ -93,6 +94,7 @@
   34.12  
   34.13  	# addgroup postdrop if needed
   34.14  	if ! grep -q postdrop "$1/etc/group"; then
   34.15 +		echo
   34.16  		echo -n "Adding group ${group}..."
   34.17  		chroot "$1/" addgroup -S $group
   34.18  		status
    35.1 --- a/postgresql/receipt	Fri May 18 22:33:04 2018 +0200
    35.2 +++ b/postgresql/receipt	Sun May 20 13:28:18 2018 +0200
    35.3 @@ -56,6 +56,7 @@
    35.4  {
    35.5          # adduser postgres if needed
    35.6  	if ! grep -q postgres: "$1/etc/passwd"; then
    35.7 +		echo
    35.8  		echo -n "Adding user postgres..."
    35.9  		chroot "$1/" adduser postgres -D -H -u 88 -h /var/lib/pgsql
   35.10  		#[ -d "$1/var/lib/pgsql" ] && rm -f "$1/var/lib/pgsql"/.* "$1/var/lib/pgsql"/*
   35.11 @@ -63,6 +64,7 @@
   35.12  	fi
   35.13  	# addgroup postgres if needed
   35.14  	if ! grep -q postgres: "$1/etc/group"; then
   35.15 +		echo
   35.16  		echo -n "Adding group postgres..."
   35.17  		chroot "$1/" sh -c 'addgroup -g 88 postgres'
   35.18  		status
    36.1 --- a/ppp/receipt	Fri May 18 22:33:04 2018 +0200
    36.2 +++ b/ppp/receipt	Sun May 20 13:28:18 2018 +0200
    36.3 @@ -104,5 +104,6 @@
    36.4  	rm -f $1/var/cache/tazpanel/header.* 2>/dev/null || true
    36.5  	chroot "$1/" chgrp dialout /usr/sbin/pppd
    36.6  	chmod 4750 $1/usr/sbin/pppd
    36.7 +	echo
    36.8  	echo " ADD yourself to group dialout to use pppd: addgroup tux dialout"
    36.9  }
    37.1 --- a/privoxy/receipt	Fri May 18 22:33:04 2018 +0200
    37.2 +++ b/privoxy/receipt	Sun May 20 13:28:18 2018 +0200
    37.3 @@ -54,18 +54,21 @@
    37.4  {
    37.5  	# adduser privoxy if needed
    37.6  	if ! grep -q privoxy "$1/etc/passwd"; then
    37.7 +		echo
    37.8  		echo -n "Adding user privoxy..."
    37.9  		chroot "$1/" adduser -s /bin/false -H -D -u 42 privoxy
   37.10  		status
   37.11  	fi
   37.12  
   37.13  	if ! grep -q privoxy "$1/etc/group"; then
   37.14 +		echo
   37.15  		echo -n "Adding group privoxy..."
   37.16  		chroot "$1/" addgroup -g 42 privoxy
   37.17  		status
   37.18  	fi
   37.19  
   37.20  	# and change file permissions
   37.21 +	echo
   37.22  	echo -n "Changing file permissions..."
   37.23  	chroot "$1/" chown -R privoxy.privoxy /etc/privoxy
   37.24  	chown -R root.root "$1/etc/privoxy/templates"
    38.1 --- a/razorqt/receipt	Fri May 18 22:33:04 2018 +0200
    38.2 +++ b/razorqt/receipt	Sun May 20 13:28:18 2018 +0200
    38.3 @@ -99,6 +99,7 @@
    38.4  	res=$(cat "$1/etc/slim.conf" | grep ^session | sed s/"sessions. *"//)
    38.5  	# Adding WM to SLIM available sessions.
    38.6  	if ! echo "$res" | grep -q $PACKAGE; then
    38.7 +		echo
    38.8  		echo -n "Adding $PACKAGE to /etc/slim.conf..."
    38.9  		sed -i "s/^sessions.*/sessions            ${res},$PACKAGE/" "$1/etc/slim.conf"
   38.10  		status
    39.1 --- a/rclone/receipt	Fri May 18 22:33:04 2018 +0200
    39.2 +++ b/rclone/receipt	Sun May 20 13:28:18 2018 +0200
    39.3 @@ -15,7 +15,7 @@
    39.4  # Rules to configure and make the package.
    39.5  compile_rules()
    39.6  {
    39.7 -	echo "Precompiled binry..."
    39.8 +	echo "Precompiled binary..."
    39.9  	mkdir -p $install/usr/bin
   39.10  	cp $src/rclone $install/usr/bin
   39.11  }
    40.1 --- a/remind/receipt	Fri May 18 22:33:04 2018 +0200
    40.2 +++ b/remind/receipt	Sun May 20 13:28:18 2018 +0200
    40.3 @@ -36,9 +36,10 @@
    40.4  post_install()
    40.5  {
    40.6  	# Check for ~/.reminders file - needed for wyrd
    40.7 +	nl="\\n"
    40.8  	for i in $(ls "$1/home" 2> /dev/null); do
    40.9  		[ -f "$1/home/$i/.reminders" ] && continue
   40.10 -		echo -n "Creating config file for $i ..."
   40.11 +		echo -en "${nl}Creating config file for $i ..."
   40.12  		touch "$1/home/$i/.reminders" 
   40.13  		chroot "$1/" chown $(stat -c "%u.%g" "$1/home/$i") "/home/$i/.reminders"
   40.14  		status
    41.1 --- a/sane-backends/receipt	Fri May 18 22:33:04 2018 +0200
    41.2 +++ b/sane-backends/receipt	Sun May 20 13:28:18 2018 +0200
    41.3 @@ -76,6 +76,7 @@
    41.4  	chroot "$1/" chgrp scanner /usr/bin/scanimage
    41.5  	chmod 4750 $1/usr/bin/scanimage
    41.6  	
    41.7 +	echo
    41.8  	echo " ADD yourself to group scanner to use sane: addgroup tux scanner"
    41.9  	
   41.10  	rm -f "$1"/var/cache/tazpanel/* 2> /dev/null
    42.1 --- a/tazlito/receipt	Fri May 18 22:33:04 2018 +0200
    42.2 +++ b/tazlito/receipt	Sun May 20 13:28:18 2018 +0200
    42.3 @@ -1,7 +1,7 @@
    42.4  # SliTaz package receipt.
    42.5  
    42.6  PACKAGE="tazlito"
    42.7 -VERSION="500"
    42.8 +VERSION="501"
    42.9  CATEGORY="base-system"
   42.10  SHORT_DESC="SliTaz Live Tool."
   42.11  MAINTAINER="pascal.bellard@slitaz.org"
    43.1 --- a/tuxtype/receipt	Fri May 18 22:33:04 2018 +0200
    43.2 +++ b/tuxtype/receipt	Sun May 20 13:28:18 2018 +0200
    43.3 @@ -51,6 +51,7 @@
    43.4  
    43.5  post_install()
    43.6  {
    43.7 +	echo
    43.8  	echo "Adding games group if not already created:"
    43.9  	chroot "$1/" addgroup games
   43.10  }
    44.1 --- a/urbackup-server/receipt	Fri May 18 22:33:04 2018 +0200
    44.2 +++ b/urbackup-server/receipt	Sun May 20 13:28:18 2018 +0200
    44.3 @@ -44,6 +44,7 @@
    44.4  	group=urbackup
    44.5  	
    44.6  	if ! grep -q $user "$1/etc/passwd"; then
    44.7 +		echo
    44.8  		echo -n "Adding user/group $user..."
    44.9  		chroot "$1/" addgroup -S $group
   44.10  		chroot "$1/" adduser -s /bin/false -S -D -h /var/urbackup -G $group $user
    45.1 --- a/usbmuxd/receipt	Fri May 18 22:33:04 2018 +0200
    45.2 +++ b/usbmuxd/receipt	Sun May 20 13:28:18 2018 +0200
    45.3 @@ -39,12 +39,14 @@
    45.4  {
    45.5  	# adduser usbmuxd if needed
    45.6  	if ! grep -q usbmuxd "$1/etc/passwd"; then
    45.7 +		echo
    45.8  		echo -n "Adding user privoxy..."
    45.9  		chroot "$1/" adduser -s /bin/false -H -D -u 140 usbmuxd
   45.10  		status
   45.11  	fi
   45.12  
   45.13  	if ! grep -q usbmuxd "$1/etc/group"; then
   45.14 +		echo
   45.15  		echo -n "Adding group privoxy..."
   45.16  		chroot "$1/" addgroup -g 140 usbmuxd
   45.17  		status
    46.1 --- a/wordpress/receipt	Fri May 18 22:33:04 2018 +0200
    46.2 +++ b/wordpress/receipt	Sun May 20 13:28:18 2018 +0200
    46.3 @@ -30,11 +30,13 @@
    46.4  	# Minimal config for wordpress.
    46.5  	if [ -z "$1" ]; then
    46.6  		if ( ! mysqladmin -s ping > /dev/null ); then
    46.7 +			echo
    46.8  			echo "Starting MySQL server"
    46.9  			( /etc/init.d/mysql start ; status  ) || exit 
   46.10  			sleep 4 #let the mysql daemon start
   46.11  		fi
   46.12  		if ( ! mysql -u root -Be 'show databases' | grep -q $db ); then
   46.13 +			echo
   46.14  			echo -n "Create $db database"
   46.15  			mysql -Be "create database $db" ; status
   46.16  			# We suppose that $DB_USER user does not exist.
    47.1 --- a/xfce4-ristretto/receipt	Fri May 18 22:33:04 2018 +0200
    47.2 +++ b/xfce4-ristretto/receipt	Sun May 20 13:28:18 2018 +0200
    47.3 @@ -37,6 +37,7 @@
    47.4  
    47.5  post_install()
    47.6  {
    47.7 +	echo
    47.8  	echo "Execute post-install command"
    47.9  	gtk-update-icon-cache -f -t -q "$1/usr/share/icons/hicolor"
   47.10  }
    48.1 --- a/yasr/receipt	Fri May 18 22:33:04 2018 +0200
    48.2 +++ b/yasr/receipt	Sun May 20 13:28:18 2018 +0200
    48.3 @@ -34,6 +34,7 @@
    48.4  post_install()
    48.5  {
    48.6  	# Enable speech-synthesizer in config file
    48.7 +	echo
    48.8  	echo -n "Enabling config file..."
    48.9  	cd "$1/usr/share/yasr"
   48.10  	sed -i 's/synthesizer=emacspeak/#synthesizer=emacspeak/; \