mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
c063ea2bfa
svn path=/nixos/trunk/; revision=7300
14 lines
318 B
Nix
14 lines
318 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 test -d $i; then
|
|
ln -s $i/etc/event.d/* $out/etc/event.d/
|
|
fi
|
|
done
|
|
"
|