Initial commit with version 0.12.2
This commit is contained in:
commit
65f387ee85
4 changed files with 99 additions and 0 deletions
11
firefox-syncstorage.install
Normal file
11
firefox-syncstorage.install
Normal file
|
@ -0,0 +1,11 @@
|
|||
post_install() {
|
||||
getent group syncstorage &>/dev/null || groupadd -r syncstorage >/dev/null
|
||||
getent passwd syncstorage &>/dev/null || useradd -r -s /usr/bin/false \
|
||||
-g syncstorage -G syncstorage syncstorage >/dev/null
|
||||
}
|
||||
|
||||
pre_remove() {
|
||||
getent passwd syncstorage &>/dev/null && userdel syncstorage >/dev/null
|
||||
getent group syncstorage &>/dev/null && groupdel syncstorage >/dev/null
|
||||
true
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue