Major infrastructure changes, part 2.
* Moved helpers, common and triggers dirs into xbps-src, where
they belong.
* Renamed the templates dir to srcpkgs, it was so redundant before.
* Make it possible to add subpkgs with no restriction in names, for
example udev now has a subpkgs called "libgudev". Previously
subpkgs were named "${sourcepkg}-${pkgname}".
* xbps-src: changed to look for template files in current directory.
That means that most arguments from the targets have been removed.
* xbps-src: added a reinstall target, to remove + install.
* xbps-src: do not overwrite binpkgs by default, skip them.
And more that I forgot because it's a mega-commit that I've been
working for some days already...
--HG--
extra : convert_revision : 0f466878584d1e6895d2a234f07ea1b2d1e61b3e
This commit is contained in:
5
srcpkgs/cronie/files/crond.logrotate
Normal file
5
srcpkgs/cronie/files/crond.logrotate
Normal file
@@ -0,0 +1,5 @@
|
||||
/var/log/cron {
|
||||
sharedscripts
|
||||
copytruncate
|
||||
missingok
|
||||
}
|
||||
11
srcpkgs/cronie/files/crond.rc
Normal file
11
srcpkgs/cronie/files/crond.rc
Normal file
@@ -0,0 +1,11 @@
|
||||
#!/sbin/runscript
|
||||
|
||||
command=/usr/sbin/crond
|
||||
pidfile=/var/run/crond.pid
|
||||
name="crond (Cron Daemon)"
|
||||
|
||||
depend()
|
||||
{
|
||||
need localmount
|
||||
after bootmisc
|
||||
}
|
||||
10
srcpkgs/cronie/files/crontab
Normal file
10
srcpkgs/cronie/files/crontab
Normal file
@@ -0,0 +1,10 @@
|
||||
SHELL=/bin/sh
|
||||
PATH=/sbin:/bin:/usr/sbin:/usr/bin
|
||||
MAILTO=""
|
||||
HOME=/
|
||||
|
||||
# run-parts
|
||||
01 * * * * root run-parts /etc/cron.hourly
|
||||
02 4 * * * root run-parts /etc/cron.daily
|
||||
22 4 * * 0 root run-parts /etc/cron.weekly
|
||||
42 4 1 * * root run-parts /etc/cron.monthly
|
||||
11
srcpkgs/cronie/patches/fix_pam_crond.diff
Normal file
11
srcpkgs/cronie/patches/fix_pam_crond.diff
Normal file
@@ -0,0 +1,11 @@
|
||||
--- pam/crond.orig 2009-03-28 15:23:30.652684272 +0100
|
||||
+++ pam/crond 2009-03-28 15:24:21.382420737 +0100
|
||||
@@ -4,8 +4,5 @@
|
||||
#
|
||||
auth sufficient pam_rootok.so
|
||||
auth required pam_env.so
|
||||
-auth include system-auth
|
||||
account required pam_access.so
|
||||
-account include system-auth
|
||||
session required pam_loginuid.so
|
||||
-session include system-auth
|
||||
41
srcpkgs/cronie/template
Normal file
41
srcpkgs/cronie/template
Normal file
@@ -0,0 +1,41 @@
|
||||
# Template file for 'cronie'
|
||||
pkgname=cronie
|
||||
version=1.4.1
|
||||
distfiles="http://xbps.nopcode.org/distfiles/cronie-$version.tar.gz"
|
||||
build_style=gnu_configure
|
||||
configure_args="--with-inotify --without-selinux --with-pam --disable-anacron
|
||||
--with-daemon_username=nobody --with-daemon_groupname=nobody
|
||||
--localstatedir=/var"
|
||||
short_desc="Runs specified programs at scheduled times"
|
||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||
checksum=269c7ea3d91d4c4cc54fce5b40a9bf2df1489928825b1d1cae711bb8aac621d6
|
||||
long_desc="
|
||||
Cronie contains the standard UNIX daemon crond that runs specified programs at
|
||||
scheduled times and related tools. It is based on the original cron and
|
||||
has security and configuration enhancements like the ability to use PAM and
|
||||
SELinux."
|
||||
|
||||
keep_empty_dirs=yes
|
||||
conf_files="/etc/crontab"
|
||||
openrc_services="crond default"
|
||||
|
||||
Add_dependency full glibc
|
||||
Add_dependency full pam
|
||||
Add_dependency full run-parts
|
||||
|
||||
post_install()
|
||||
{
|
||||
install -d ${DESTDIR}/etc/cron.d ${DESTDIR}/etc/cron.hourly \
|
||||
${DESTDIR}/etc/cron.daily ${DESTDIR}/etc/cron.weekly \
|
||||
${DESTDIR}/etc/cron.monthly ${DESTDIR}/etc/logrotate.d
|
||||
install -d -m755 ${DESTDIR}/var/spool/cron
|
||||
|
||||
install -D -m755 ${FILESDIR}/crond.rc ${DESTDIR}/etc/init.d/crond
|
||||
install -m644 ${FILESDIR}/crontab ${DESTDIR}/etc/crontab
|
||||
install -m644 ${FILESDIR}/crond.logrotate \
|
||||
${DESTDIR}/etc/logrotate.d/crond
|
||||
|
||||
# Add /etc/cron.deny empty, to allow all users.
|
||||
touch ${DESTDIR}/etc/cron.deny
|
||||
chmod 644 ${DESTDIR}/etc/cron.deny
|
||||
}
|
||||
Reference in New Issue
Block a user