diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-02-19 12:43:09 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-02-19 12:43:09 +0000 |
commit | 22bce435337177370455f5e994bd783f2806442e (patch) | |
tree | 0037c2a438d1830ca9660d1e095dde8180a97910 /main/cups/cups.pre-install | |
parent | b481f65765ced6e5513dd371ffa540fb622a2aba (diff) | |
download | aports-22bce435337177370455f5e994bd783f2806442e.tar.bz2 aports-22bce435337177370455f5e994bd783f2806442e.tar.xz |
main/cups: misc fixes
- the doc files is needed for the web interface
- we need openssl for automatic https
- create lpadmin group from pre-install
Diffstat (limited to 'main/cups/cups.pre-install')
-rw-r--r-- | main/cups/cups.pre-install | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/main/cups/cups.pre-install b/main/cups/cups.pre-install new file mode 100644 index 0000000000..f6b88cbd2b --- /dev/null +++ b/main/cups/cups.pre-install @@ -0,0 +1,7 @@ +#!/bin/sh + +addgroup -S ldadmin 2>/dev/null +addgroup -S lp 2>/dev/null +adduser -S -G lp lp 2>/dev/null +addgroup lp lp 2>/dev/null +exit 0 |