<feed xmlns='http://www.w3.org/2005/Atom'>
<title>auto-win-vm-ad.git, branch my-master</title>
<subtitle>Scripts to automatically install and configure a VM with a Windows 2008R2 AD domain</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/auto-win-vm-ad.git/'/>
<entry>
<title>Get all IP infor from /etc/hosts</title>
<updated>2012-09-11T15:15:54+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>simo@redhat.com</email>
</author>
<published>2012-09-11T15:15:54+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/auto-win-vm-ad.git/commit/?id=fe666302366c0af4da843b04c2f8b62b29c2129a'/>
<id>fe666302366c0af4da843b04c2f8b62b29c2129a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use default network in NAT mode and random MAC</title>
<updated>2012-09-11T14:29:27+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>simo@redhat.com</email>
</author>
<published>2012-09-11T14:25:32+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/auto-win-vm-ad.git/commit/?id=66830832af6b4d5db3c9adaa0239b72e6e4af9f4'/>
<id>66830832af6b4d5db3c9adaa0239b72e6e4af9f4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Do not activate copy</title>
<updated>2012-09-11T14:19:33+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>simo@redhat.com</email>
</author>
<published>2012-09-11T14:19:33+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/auto-win-vm-ad.git/commit/?id=5c92550c416eb7d06dc813b337dcc87856c207c8'/>
<id>5c92550c416eb7d06dc813b337dcc87856c207c8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Personalize script and make runnable</title>
<updated>2012-09-11T14:19:15+00:00</updated>
<author>
<name>Simo Sorce</name>
<email>simo@redhat.com</email>
</author>
<published>2012-09-11T14:19:15+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/auto-win-vm-ad.git/commit/?id=7e5082db9fe501a80d78d483147622d599c706b3'/>
<id>7e5082db9fe501a80d78d483147622d599c706b3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add support for PassSync TTL</title>
<updated>2012-08-30T22:17:11+00:00</updated>
<author>
<name>Rich Megginson</name>
<email>rmeggins@redhat.com</email>
</author>
<published>2012-08-30T22:17:11+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/auto-win-vm-ad.git/commit/?id=028b269e1caa720f8d52ffe7f6577ef705f5f114'/>
<id>028b269e1caa720f8d52ffe7f6577ef705f5f114</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>use $SUDOCMD to run vm commands - add user SetupComplete as last step</title>
<updated>2012-08-20T15:01:16+00:00</updated>
<author>
<name>Rich Megginson</name>
<email>rmeggins@redhat.com</email>
</author>
<published>2012-08-20T15:01:16+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/auto-win-vm-ad.git/commit/?id=4fbdee32a7b73bfd1b70b5b1c080036498157e1e'/>
<id>4fbdee32a7b73bfd1b70b5b1c080036498157e1e</id>
<content type='text'>
One of the problems with make-ad-vm.sh is that there was no way to know
when it was complete.  setupscript99.cmd will create an AD user called
SetupComplete as the very last step.  When this user is present, the
setup process is finished.  The make-ad-vm.sh script will delete this
user entry.
Some of the virsh and vm commands can only be run by root.  These commands
are now prefixed with $SUDOCMD.  If you are running the script as a non-root
user, and you have sudo setup to allow that user to run the commands, you
can use
 SUDOCMD=sudo ..othervars.. make-ad-vm.sh ....
Otherwise, if you are running as root, just leave SUDOCMD blank.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
One of the problems with make-ad-vm.sh is that there was no way to know
when it was complete.  setupscript99.cmd will create an AD user called
SetupComplete as the very last step.  When this user is present, the
setup process is finished.  The make-ad-vm.sh script will delete this
user entry.
Some of the virsh and vm commands can only be run by root.  These commands
are now prefixed with $SUDOCMD.  If you are running the script as a non-root
user, and you have sudo setup to allow that user to run the commands, you
can use
 SUDOCMD=sudo ..othervars.. make-ad-vm.sh ....
Otherwise, if you are running as root, just leave SUDOCMD blank.
</pre>
</div>
</content>
</entry>
<entry>
<title>added password field and log level to passsync vars</title>
<updated>2012-08-20T15:00:57+00:00</updated>
<author>
<name>Rich Megginson</name>
<email>rmeggins@redhat.com</email>
</author>
<published>2012-08-20T15:00:57+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/auto-win-vm-ad.git/commit/?id=7c079e3402ee5cad6d12c972ae83b040b4435a2a'/>
<id>7c079e3402ee5cad6d12c972ae83b040b4435a2a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>setup script to enable POSIX attributes in AD</title>
<updated>2012-08-20T15:00:26+00:00</updated>
<author>
<name>Rich Megginson</name>
<email>rmeggins@redhat.com</email>
</author>
<published>2012-08-20T15:00:26+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/auto-win-vm-ad.git/commit/?id=db3f39c194f190f67874871d33be3279e7dfefe4'/>
<id>db3f39c194f190f67874871d33be3279e7dfefe4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>use cdrom instead of floppy</title>
<updated>2012-07-26T02:37:00+00:00</updated>
<author>
<name>Rich Megginson</name>
<email>rmeggins@redhat.com</email>
</author>
<published>2012-07-26T02:34:56+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/auto-win-vm-ad.git/commit/?id=14748057b040ce3c7073de0088a3fe8b75fd6a89'/>
<id>14748057b040ce3c7073de0088a3fe8b75fd6a89</id>
<content type='text'>
first pass at passsync installer
split out AD installer from postinstall
fixes for nextscript
parameterize SETUP_PATH in all cmd files
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
first pass at passsync installer
split out AD installer from postinstall
fixes for nextscript
parameterize SETUP_PATH in all cmd files
</pre>
</div>
</content>
</entry>
<entry>
<title>Parameterized install - added README</title>
<updated>2012-07-20T20:11:58+00:00</updated>
<author>
<name>Rich Megginson</name>
<email>rmeggins@redhat.com</email>
</author>
<published>2012-07-20T20:11:58+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/auto-win-vm-ad.git/commit/?id=792e1312636cbcd78be3a12953b0ea009f116364'/>
<id>792e1312636cbcd78be3a12953b0ea009f116364</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
