An Ansible Playbook to initialize Debian and Ubuntu systems.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 637B

6 years ago
123456789101112131415161718192021222324252627282930
  1. # Initialize Linux Servers
  2. This is an Ansible Playbook for initilazing Debian and Ubuntu Linux Servers
  3. ## Prerequisites
  4. Some Debian/Ubuntu Linux Servers, VMs or Containers
  5. ## Usage
  6. Clone the repo:
  7. ```
  8. $ git clone https://git.cut.ac.cy/IST/ansible-initialize-servers.git
  9. $ cd ansible-initialize-servers
  10. ```
  11. Setup your environment. You can copy the examle file (*vars/all.yml.example*) to *vars/all.yml* or prepare your own:
  12. ```
  13. # vars/all.yml
  14. custom_ssh_port: 4444
  15. timezone: "Europe/Nicosia"
  16. ```
  17. Adjust your hosts in */etc/ansible/hosts* and in *init_system.yml* and run the Playbook:
  18. ```
  19. $ ansible-playbook init_system.yml
  20. ```