blob: 83b14febf0813eac6cba94a2c11b26791e363748 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
set -e
# Install Plymouth (in lb 2.x, the "standard" packages list pulls
# console-common in, which plymouth conflicts with, so we have to deal
# with that at this stage.)
echo "Installing Plymouth"
apt-get --yes purge console-common
apt-get --yes install plymouth
|