#!/bin/sh

post_install() {
  # make sure the user exists...
  systemd-sysusers gitolite.conf

  # ... and change the shell. This is done only once in post-install
  # function, so an administrative change is persistent.
  chsh --shell /bin/bash gitolite > /dev/null
}
