Advertisement
benja_kern

nss-ldapd.install

Jul 26th, 2012
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. post_install() {
  2. getent passwd nslcd >> /dev/null || useradd -r -M -d /var/run/nslcd -s /bin/false nslcd
  3. }
  4.  
  5. post_upgrade() {
  6. getent passwd nslcd >> /dev/null || useradd -r -M -s /bin/false nslcd
  7. }
  8.  
  9. pre_remove() {
  10. userdel nslcd >/dev/null 2>&1 || true
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement