blob: 8db4f1281c6648d6e53e115de8544fce431d67ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
post_install() {
echo ">>> gstd has been installed."
echo ">>> Configuration options can be set in /etc/conf.d/gstd"
echo ""
echo ">>> For desktop use with graphical/audio pipelines, enable the USER service:"
echo " systemctl --user enable --now gstd.service"
echo ""
echo ">>> For a non-graphical server environment, enable the SYSTEM service:"
echo " sudo systemctl enable --now gstd-server.service"
}
post_upgrade() {
post_install
}
post_remove() {
echo ">>> The 'gstd' system user is not removed automatically."
echo ">>> You may remove it manually with: sudo userdel gstd"
}
|