[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#247443: diskless-image-secure: Syntax error in postinst script.



Package: diskless-image-secure
Version: 0.3.18.0.4
Severity: important

      Hello.  I have found two simple syntax errors in the postinst
  script that are triggered when devfs support is enabled.  The script
  contains the lines:

	# convert from good looking boolean template to what expected in the scripts
	if [ $devfs = 'true' ] ; then
		devfs = 'yes'
	else
		devfs = 'no'
	fi

  Of course, no space should be left around the equal sign in the
  assignations:

	# convert from good looking boolean template to what expected in the scripts
	if [ $devfs = 'true' ] ; then
		devfs='yes'
	else
		devfs='no'
	fi

  With this fix the image instalation works OK.

  Thanks,
    Ivan


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.4.24orm
Locale: LANG=ca_ES, LC_CTYPE=ca_ES



Reply to: