(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
  sudo cp /etc/init.d/skeleton /etc/init.d/<jobname>
 
  sudo cp /etc/init.d/skeleton /etc/init.d/<jobname>
Edit it to give the path and arguments
+
*Edit it to give the path and arguments
 
  sudo vi /etc/init.d/<jobname>
 
  sudo vi /etc/init.d/<jobname>
   
+
*Update initrd
 +
  sudo update-rc.d <jobname> defaults
 +
That's all. The job will run from the next time the system starts.
 +
 
 
{{Template:FB}}
 
{{Template:FB}}
 
[[Category:Technical]]
 
[[Category:Technical]]

Latest revision as of 13:58, 29 December 2013

sudo cp /etc/init.d/skeleton /etc/init.d/<jobname>
  • Edit it to give the path and arguments
sudo vi /etc/init.d/<jobname>
  • Update initrd
sudo update-rc.d <jobname> defaults

That's all. The job will run from the next time the system starts.




sudo cp /etc/init.d/skeleton /etc/init.d/<jobname>

Edit it to give the path and arguments

sudo vi /etc/init.d/<jobname>