On (27/05/15 15:30), Stephen Gallagher wrote:
On Wed, 2015-05-27 at 13:31 -0400, Stephen Gallagher wrote:
To set up a Vagrant development environment:
- Install the Vagrant packages for your development system
- On Fedora 22 and later: 'dnf install vagrant-libvirt'
- Deploy the Vagrant box:
- 'vagrant up'
- Build SSSD:
- vagrant ssh -c "cd /vagrant; reconfig; chmake"
Vagrant can keep your development tree in-sync with the Vagrant box by running 'vagrant rsync-auto' in a shell (this will continue to run, monitoring for changes and syncing them as they are saved). Alternately, it can be manually synced with 'vagrant rsync' at will.
One minor update; added a few more packages to the deployment installation (adcli, oddjob-mkhomedir and polkit) to support realmd.
From a652a5ea9233b1cac6a84b205a4e71cc9b659aaf Mon Sep 17 00:00:00 2001 From: Stephen Gallagher sgallagh@redhat.com Date: Wed, 27 May 2015 13:17:40 -0400 Subject: [PATCH] Add Vagrant configuration for SSSD
To set up a Vagrant development environment:
- Install the Vagrant packages for your development system
- On Fedora 22 and later: 'dnf install vagrant-libvirt'
- Deploy the Vagrant box:
- 'vagrant up'
- Build SSSD:
- vagrant ssh -c "cd /vagrant; reconfig; chmake"
Vagrant can keep your development tree in-sync with the Vagrant box by running 'vagrant rsync-auto' in a shell (this will continue to run, monitoring for changes and syncing them as they are saved). Alternately, it can be manually synced with 'vagrant rsync' at will.
Vagrantfile | 74 ++++++++++++++++++++++++++++++++++++++++++++++++++++ vagrant/bootstrap.sh | 21 +++++++++++++++
Could it be in contrib directory?
LS