diff options
author | Isaac Dunham <ibid.ag@gmail.com> | 2014-06-29 22:53:44 -0700 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2014-07-01 14:19:27 +0000 |
commit | bd662709fe2c8742823e1cea6cddcafd54a942d4 (patch) | |
tree | 25b7843f70e24ddc4cbf18ca0f92ad12f308b015 /main/cups/cups.pre-install | |
parent | 02bf3e3b6a1cbf88dd4cd4d3e679be90911f9896 (diff) | |
download | aports-bd662709fe2c8742823e1cea6cddcafd54a942d4.tar.bz2 aports-bd662709fe2c8742823e1cea6cddcafd54a942d4.tar.xz |
main/cups: fix typo, lpd backend
'ldadmin' for 'lpadmin' kept cups from starting.
'lpd' failed with errno=EINVAL on musl, thanks to passing bind a
struct sockaddr{,_in,_in6,_un} with a reported size of 256.
This resulted in lpd print support being unusable.
Diffstat (limited to 'main/cups/cups.pre-install')
-rw-r--r-- | main/cups/cups.pre-install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/cups/cups.pre-install b/main/cups/cups.pre-install index f6b88cbd2..468163cfe 100644 --- a/main/cups/cups.pre-install +++ b/main/cups/cups.pre-install @@ -1,6 +1,6 @@ #!/bin/sh -addgroup -S ldadmin 2>/dev/null +addgroup -S lpadmin 2>/dev/null addgroup -S lp 2>/dev/null adduser -S -G lp lp 2>/dev/null addgroup lp lp 2>/dev/null |