cb411d1a3d
svn path=/nixos/branches/modular-nixos/; revision=15645
18 lines
407 B
Nix
18 lines
407 B
Nix
# Create an etc/event.d directory containing symlinks to the
|
|
# specified list of Upstart job files.
|
|
{runCommand, jobs}:
|
|
|
|
runCommand "upstart-jobs" {inherit jobs;}
|
|
"
|
|
ensureDir $out/etc/event.d
|
|
for i in $jobs; do
|
|
if ln -s $i . ; then
|
|
if test -d $i; then
|
|
ln -s $i/etc/event.d/* $out/etc/event.d/
|
|
fi
|
|
else
|
|
echo Duplicate entry: $i;
|
|
fi;
|
|
done
|
|
"
|