#! @shell@ # !!! Hack - should be done with udev rules. chmod 666 /dev/null # Set up the statically computed bits of /etc. staticEtc=/etc/static rm -f $staticEtc ln -s @etc@/etc $staticEtc for i in $(cd $staticEtc && find * -type l); do mkdir -p /etc/$(dirname $i) rm -f /etc/$i ln -s $staticEtc/$i /etc/$i done # Remove dangling symlinks that point to /etc/static. These are # configuration files that existed in a previous configuration but not # in the current one. for i in $(find /etc/ -type l); do target=$(readlink "$i") if test "${target:0:${#staticEtc}}" = "$staticEtc" -a ! -e "$i"; then rm -f "$i" fi done # Enable a password-less root login. source @accounts@ if ! test -e /etc/passwd; then if test -n "@readOnlyRoot@"; then rootHome=/ else rootHome=/home/root mkdir -p $rootHome fi createUser root '' 0 0 'System administrator' $rootHome/var/empty @shell@ fi if ! test -e /etc/group; then echo "root:*:0" > /etc/group fi # Set up Nix accounts. if test -z "@readOnlyRoot@"; then for i in $(seq 1 10); do account=nixbld$i if ! userExists $account; then createUser $account x \ $((i + 30000)) 30000 \ 'Nix build user' /var/empty /noshell fi accounts="$accounts${accounts:+,}$account" done if ! grep -q "^nixbld:" /etc/group; then echo "nixbld:*:30000:$accounts" >> /etc/group fi mkdir -p /nix/etc/nix cat > /nix/etc/nix/nix.conf < /etc/profile < $wrapperDir/$i.real chown root.root $wrapperDir/$i chmod 4755 $wrapperDir/$i done # Set the host name. hostname @hostName@