Skip to content

Instantly share code, notes, and snippets.

View bocajspear1's full-sized avatar
🙂
Being a person

Jacob Hartman bocajspear1

🙂
Being a person
View GitHub Profile
@bocajspear1
bocajspear1 / unattend.xml
Created April 23, 2019 20:12
Unattend file for sysprep that doesn't ask for new computer name and username. From https://superuser.com/a/1312533.
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="oobeSystem">
<component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<OOBE>
<SkipMachineOOBE>true</SkipMachineOOBE>
<SkipUserOOBE>true</SkipUserOOBE>
</OOBE>
</component>
</settings>
@bocajspear1
bocajspear1 / lxcfs.service
Created May 22, 2016 18:08
OpenRC init script for LXCFS
#!/sbin/openrc-run
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
name="lxcfs"
depend() {
after cgmanager
}