Project

General

Profile

Download (459 Bytes) Statistics
| Branch: | Tag: | Revision:
foreman_postinst() {
LOGFILE='/var/log/foreman-install.log'
BUNDLE=@BUNDLE@
[ -h /usr/bin/foreman-ruby ] && BUNDLE="/usr/bin/foreman-ruby @BUNDLE@"

# Update gems
export HOME=/usr/share/foreman
cd /usr/share/foreman
if [ ! -z "${DEBUG}" ]; then
$BUNDLE update --jobs 4 --local --bundler
else
$BUNDLE update --jobs 4 --local --bundler 2>&1 >> $LOGFILE
fi

# Own all the core files
chown -Rf foreman:foreman '/usr/share/foreman'
}
(46-46/52)