blob: d93488317f3be9862b0943e5dd6eab36c451acff (
plain)
1
2
3
4
5
6
7
|
#!/bin/bash
# tag Debian Edu machine as a workstation
if [ -f $target/etc/debian-edu/config ]; then
sed -i $target/etc/debian-edu/config -e "s/^PROFILE=.*$/PROFILE=\"Workstation\"/"
fi
|