0

I accidentally remove my file /etc/init.d/skeleton.

Where can I get that file again?

My distribution is Raspbian.

Stephen Kitt
  • 434,908
andrejs82
  • 3
  • 2

1 Answers1

3

Re-install initscripts (as root):

apt-get --reinstall install initscripts

To figure this out for yourself in future:

apt-file search /etc/init.d/skeleton

You may need to install apt-file and run apt-file update as root first.

Stephen Kitt
  • 434,908