Advertisement
corrosiontears

Systemd com suporte a rc.local

Mar 18th, 2014
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.46 KB | None | 0 0
  1. ## Systemd rc.local → Ativando novamente:
  2. ## Dica do Link: https://bbs.archlinux.org/viewtopic.php?pid=1152201
  3. # E do Link: https://wiki.archlinux.org/index.php/Systemd/Services#rc.local
  4. ## Crie um serviço com esse conteúdo:
  5.  
  6. /etc/systemd/system/rc-local.service
  7.  
  8. [Unit]
  9. Description=/etc/rc.local Compatibility
  10.  
  11. [Service]
  12. Type=oneshot
  13. ExecStart=/etc/rc.local
  14. TimeoutSec=0
  15. StandardInput=tty
  16. RemainAfterExit=yes
  17.  
  18. [Install]
  19. WantedBy=multi-user.target
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement