Skip to content
Snippets Groups Projects

Collabora online

Merged Corentin Mercier requested to merge collabora_update into master
4 files
+ 86
0
Compare changes
  • Side-by-side
  • Inline
Files
4
#!/bin/sh
# Update installed packages
apt-get update && apt-get -y upgrade
# Install HTTPS transport
apt-get -y install apt-transport-https
# Install locales
apt-get -y install locales-all
# Add Collabora repos
echo "deb https://collaboraoffice.com/repos/CollaboraOnline/CODE /" > /etc/apt/sources.list.d/collabora.list
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 6CCEA47B2281732DF5D504D00C54D189F4BA284D
apt-get update
# Install the Collabora packages
apt-get -y install loolwsd code-brand collaboraoffice6.0-dict-fr collaboraoffice6.0-dict-en collaboraofficebasis6.0-fr collaboraofficebasis6.0-en
# Install inotifywait and killall to automatic restart loolwsd, if loolwsd.xml changes
apt-get -y install inotify-tools psmisc
# Cleanup
rm -rf /var/lib/apt/lists/*
\ No newline at end of file
Loading