diff options
author | Michał Kępień <github@kempniu.pl> | 2016-11-18 14:35:10 +0100 |
---|---|---|
committer | Justin Bronder <jsbronder@gentoo.org> | 2016-11-19 11:33:12 -0500 |
commit | f4a06c7f3901781c5793358aecb617edc783de15 (patch) | |
tree | 0dada66b63a281cbe5d00a5b90902c4c7ce788d3 /net-nntp | |
parent | Drop custom wrapper script (diff) | |
download | gentoo-f4a06c7f3901781c5793358aecb617edc783de15.tar.gz gentoo-f4a06c7f3901781c5793358aecb617edc783de15.tar.bz2 gentoo-f4a06c7f3901781c5793358aecb617edc783de15.zip |
Quote function arguments
Diffstat (limited to 'net-nntp')
-rw-r--r-- | net-nntp/sabnzbd/sabnzbd-1.1.1.ebuild | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/net-nntp/sabnzbd/sabnzbd-1.1.1.ebuild b/net-nntp/sabnzbd/sabnzbd-1.1.1.ebuild index d013e87a4798..81351112247f 100644 --- a/net-nntp/sabnzbd/sabnzbd-1.1.1.ebuild +++ b/net-nntp/sabnzbd/sabnzbd-1.1.1.ebuild @@ -60,7 +60,7 @@ pkg_setup() { python-single-r1_pkg_setup # Create sabnzbd group - enewgroup ${PN} + enewgroup "${PN}" # Create sabnzbd user, put in sabnzbd group enewuser "${PN}" -1 -1 "${HOMEDIR}" "${PN}" } @@ -80,11 +80,11 @@ src_install() { local d for d in cherrypy email icons interfaces locale po sabnzbd tools util; do - insinto /usr/share/${PN}/${d} + insinto "/usr/share/${PN}/${d}" doins -r ${d}/* done - insinto /usr/share/${PN} + insinto "/usr/share/${PN}" insopts -m 0755 doins SABnzbd.py @@ -93,12 +93,12 @@ src_install() { newinitd "${FILESDIR}/${PN}.initd" "${PN}" newconfd "${FILESDIR}/${PN}.confd" "${PN}" - diropts -o ${PN} -g ${PN} - dodir /etc/${PN} - dodir /var/log/${PN} + diropts -o "${PN}" -g "${PN}" + dodir "/etc/${PN}" + dodir "/var/log/${PN}" insinto "/etc/${PN}" - insopts -m 0600 -o ${PN} -g ${PN} + insopts -m 0600 -o "${PN}" -g "${PN}" doins "${FILESDIR}/${PN}.ini" dodoc {ABOUT,ISSUES,README}.txt licenses/* |