diff options
author | Matthew Thode <mthode@mthode.org> | 2013-01-02 12:57:38 -0600 |
---|---|---|
committer | Matthew Thode <mthode@mthode.org> | 2013-01-02 12:57:38 -0600 |
commit | 9b2780f9e5feca8f6afa206a19c5a911e62babf8 (patch) | |
tree | 8ccd74defde0f89c85397d029ec8e477ccab07f7 /sys-cluster/swift/swift-1.7.4.ebuild | |
parent | test stuff (diff) | |
download | prometheanfire-9b2780f9e5feca8f6afa206a19c5a911e62babf8.tar.gz prometheanfire-9b2780f9e5feca8f6afa206a19c5a911e62babf8.tar.bz2 prometheanfire-9b2780f9e5feca8f6afa206a19c5a911e62babf8.zip |
better depends in init files and better memcached support
Diffstat (limited to 'sys-cluster/swift/swift-1.7.4.ebuild')
-rw-r--r-- | sys-cluster/swift/swift-1.7.4.ebuild | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys-cluster/swift/swift-1.7.4.ebuild b/sys-cluster/swift/swift-1.7.4.ebuild index a50cbc9..21ee191 100644 --- a/sys-cluster/swift/swift-1.7.4.ebuild +++ b/sys-cluster/swift/swift-1.7.4.ebuild @@ -71,6 +71,10 @@ python_install() { if use proxy; then newinitd "${FILESDIR}/swift-proxy.initd" "swift-proxy" newins "etc/proxy-server.conf-sample" "proxy-server.conf" + if use memcache; then + sed '/depend/a\ + need memcached' "/etc/swift/proxy-server.conf" + fi fi if use account; then newinitd "${FILESDIR}/swift-account.initd" "swift-account" @@ -85,9 +89,6 @@ python_install() { newins "etc/object-server.conf-sample" "object-server.conf" newins "etc/object-expirer.conf-sample" "object-expirer.conf" fi - if use memcache; then - sed blah - fi fowners swift:swift "/etc/swift" || die "fowners failed" } |