blob: 7f23d17c616dec4184d97ca3fc7e3a744124e2e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
groupadd -f flutterusers
chgrp -R flutterusers /opt/flutter
chmod -R g+w /opt/flutter
}
post_upgrade() {
post_install
}
post_remove() {
groupdel flutterusers
}
|