daily pastebin goal
35%
SHARE
TWEET

Untitled

a guest Feb 23rd, 2017 27 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #!/usr/bin/make -f
  2.  
  3. # Verbose mode
  4. #export DH_VERBOSE=1
  5.  
  6. %:
  7.         dh $@ --with python2
  8.  
  9. # clean sphinx build output
  10. override_dh_clean:
  11.         dh_clean
  12.         rm -rf doc/build
  13.  
  14. override_dh_install:
  15.         dh_install --fail-missing --sourcedir=debian/tmp
  16.         install -D -m 0640 $(CURDIR)/debian/account-server.conf $(CURDIR)/debian/openstack-swift-account/etc/swift/account-server.conf
  17.         install -D -m 0640 $(CURDIR)/debian/container-server.conf $(CURDIR)/debian/openstack-swift-container/etc/swift/container-server.conf
  18.         install -D -m 0640 $(CURDIR)/debian/object-server.conf $(CURDIR)/debian/openstack-swift-object/etc/swift/object-server.conf
  19.         install -D -m 0640 $(CURDIR)/debian/object-expirer.conf $(CURDIR)/debian/openstack-swift-object-expirer/etc/swift/object-expirer.conf
  20.  
  21. override_dh_installinit:
  22.         dh_installinit --no-start
  23.         dh_installinit --no-start -popenstack-swift-account --name=openstack-swift-account-auditor
  24.  
  25. override_dh_compress:
  26.         dh_compress -Xconf-sample
RAW Paste Data
Top