Advertisement
superlatif

Untitled

Sep 30th, 2016
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. - name: Find the directory ispconfig
  2. shell: ls -1d /tmp/ispconfig3-stable-*
  3. register: foo
  4.  
  5. - name: Placer le template autoinstall dans la racine de install
  6. template:
  7. src=autoinstall.conf.php.j2
  8. dest={{ foo.stdout }}/install/autoinstall.conf.php
  9. owner=root
  10. mode=0664
  11.  
  12. - name: Start ISPConfig with autoinstall
  13. command: php -q install.php --autoinstall=autoinstall.conf.php
  14. chdir={{ foo.stdout }}/install/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement