Package Details: privatebin 2.0.3-1

Git Clone URL: https://aur.archlinux.org/privatebin.git (read-only, click to copy)
Package Base: privatebin
Description: a minimalist, open source online pastebin where the server has zero knowledge of pasted data
Upstream URL: https://privatebin.info
Keywords: pastebin privacy
Licenses: zlib
Submitter: fordprefect
Maintainer: fordprefect
Last Packager: fordprefect
Votes: 10
Popularity: 0.23
First Submitted: 2017-09-29 12:41 (UTC)
Last Updated: 2026-03-02 08:08 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

« First ‹ Previous 1 2

fordprefect commented on 2017-11-14 08:38 (UTC)

dang, you are right. corrected. Lesson learned: dont do this stuff half asleep…

theYinYeti commented on 2017-11-14 07:15 (UTC)

Hey fordprefect, Thanks for this quick update :-) I’m afraid it won’t work, though: <1> mv "$pkgdir/usr/share/webapps/$pkgname/cfg" "$pkgdir/etc/webapps/cfg" <2> ln -s /etc/webapps/$pkgname "$pkgdir/usr/share/webapps/$pkgname/cfg" Here you create /etc/webapps/cfg on line <1>, but create a link from /etc/webapps/privatebin on line <2> ;-) I did not test, but I suppose it should be: mv "$pkgdir/usr/share/webapps/$pkgname/cfg" "$pkgdir/etc/webapps/$pkgname" ln -s /etc/webapps/$pkgname "$pkgdir/usr/share/webapps/$pkgname/cfg" Only the end of the first line changes.

fordprefect commented on 2017-11-13 21:50 (UTC)

hey YinYeti, thanks for this suggestion, I have it implemented. Please test and report any problems!

theYinYeti commented on 2017-11-11 21:52 (UTC)

Hey fordprefect :-) I wish to use privatebin on my server, but I don't see how this can currently work. /usr is a read-only filesystem, 100% managed by the package manager. Would you mind moving cfg/* to /etc/webapps/privatebin/*, and symlinking /usr/share/webapps/privatebin/cfg to /etc/webapps/privatebin? Thanks!