~mordred/swift/sphinx-update-sphinx-config

« back to all changes in this revision

Viewing changes to debian/swift.postinst

  • Committer: Tarmac
  • Author(s): Monty Taylor
  • Date: 2010-07-23 03:12:02 UTC
  • mfrom: (36.1.1 split-packaging-branch)
  • Revision ID: hudson@openstack.org-20100723031202-m3fds2fzf1j57qjd
Removes the debian/ dir to support the split trunk/packaging approach.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh -e
2
 
 
3
 
# there's probably a better way
4
 
python -m compileall `python -c 'import swift;import os;print os.path.dirname(swift.__file__)'`
5
 
if ! getent passwd swift > /dev/null ; then
6
 
  adduser --system --quiet --disabled-login --disabled-password --no-create-home --group swift
7
 
fi
8