20 lines
451 B
Bash
Executable File
20 lines
451 B
Bash
Executable File
#!/bin/sh
|
|
# Install Chromium browser (from Ubuntu repos - more reliable than downloading Chrome)
|
|
|
|
set -e
|
|
|
|
echo "Installing Chromium browser..."
|
|
|
|
# Install Chromium from Ubuntu repos
|
|
apt-get update
|
|
apt-get install -y chromium-browser
|
|
|
|
# Create symlink so scripts expecting google-chrome-stable work
|
|
ln -sf /usr/bin/chromium-browser /usr/bin/google-chrome-stable
|
|
|
|
# Clean up
|
|
apt-get clean
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
echo "Chromium browser installed."
|