Changeset 9cef76ed in darkpeak-services
- Timestamp:
- Sep 14, 2019, 2:22:44 PM (17 months ago)
- Branches:
- keycloak, master
- Children:
- 650170bd
- Parents:
- b41ecced
- Files:
-
- 1 added
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
README.md
rb41ecced r9cef76ed 58 58 59 59 virt-install --connect=qemu:///system --name darkpeak --arch x86_64 --vcpus 2 --memory 4096 --disk size=20 \ 60 --location http://ftp.us.debian.org/debian/dists/ stretch/main/installer-amd64/60 --location http://ftp.us.debian.org/debian/dists/buster/main/installer-amd64/ 61 61 62 62 Copy your SSH public key into the machine: … … 92 92 This ansible file will disable password-based authentication, so make 93 93 sure you add your SSH public keys to /root/.ssh/authorized_keys before 94 doing the first deployment. 94 doing the first deployment. 95 95 96 96 After the first deployment you must make sure that you set `first_run` -
Vagrantfile
rb41ecced r9cef76ed 7 7 Vagrant.configure("2") do |config| 8 8 9 config.vm.box = "debian/ stretch64"9 config.vm.box = "debian/buster64" 10 10 11 11 # disable synced /vagrant folder … … 15 15 libvirt.memory = 1024 16 16 end 17 17 18 18 config.vm.provider "virtualbox" do |virtualbox| 19 19 virtualbox.memory = 1024 … … 27 27 28 28 end 29 -
roles/community/geerlingguy.mysql
-
Property
commit
changed from
29ae036af1168a53f00b821ff8a3933af90496c6
to88313b088b8c196e07ef0c88bc36b6b0accfe3e7
-
Property
commit
changed from
-
roles/community/geerlingguy.postgresql
-
Property
commit
changed from
66e8af0adf8d0e56d55d14f3da99a5347f9f4334
toa8b2eb0b644ef9ce5d53032b706a61ad85f20205
-
Property
commit
changed from
-
roles/mediawiki/templates/LocalSettings.php.j2
rb41ecced r9cef76ed 105 105 # Enabled skins. 106 106 # The following skins were automatically enabled: 107 wfLoadSkin( 'CologneBlue' );108 wfLoadSkin( 'Modern' );109 107 wfLoadSkin( 'MonoBook' ); 110 108 wfLoadSkin( 'Vector' ); … … 201 199 ## https://www.mediawiki.org/wiki/Manual:Short_URL 202 200 $wgArticlePath = "/wiki/$1"; 203 -
roles/sabredav/tasks/main.yml
rb41ecced r9cef76ed 44 44 with_items: 45 45 - php7.0 46 - php -dom46 - php7.0-xml 47 47 - php-mbstring 48 48 - php-mysql -
roles/tls/tasks/main.yml
rb41ecced r9cef76ed 1 - name: Add stretch-backports2 apt_repository:3 repo: "deb http://deb.debian.org/debian stretch-backports main"4 5 1 - name: Install ssl-cert package 6 2 apt: … … 10 6 cache_valid_time: 10800 # 3 hours 11 7 12 - name: Install certbot package from backports8 - name: Install certbot package 13 9 apt: 14 10 name: certbot 15 default_release: stretch-backports16 11 state: present 17 12 update_cache: yes -
roles/ttrss/tasks/main.yml
rb41ecced r9cef76ed 22 22 with_items: 23 23 - git # For cloning ttrss souece 24 - php 7.0-curl24 - php-curl 25 25 - php7.0-mbstring 26 26 - php7.0-pgsql … … 76 76 owner: ttrss 77 77 group: ttrss 78 78 79 79 - name: Install systemd unit file for update daemon 80 80 template: -
roles/znc/tasks/main.yml
rb41ecced r9cef76ed 1 - name: Add stretch-backports 2 apt_repository: 3 repo: "deb http://deb.debian.org/debian stretch-backports main" 4 5 - name: Install ZNC and dependencies from backports 1 - name: Install ZNC and dependencies 6 2 apt: 7 3 name: "{{ item }}" 8 default_release: stretch-backports9 4 state: present 10 5 update_cache: yes
Note: See TracChangeset
for help on using the changeset viewer.