12 lines
213 B
Plaintext
12 lines
213 B
Plaintext
|
#!/bin/bash
|
||
|
set -e
|
||
|
set -o xtrace
|
||
|
|
||
|
touch /var/log/first-boot.d.log
|
||
|
chmod 0600 /var/log/first-boot.d.log
|
||
|
|
||
|
run-parts /etc/first-boot.d >> /var/log/first-boot.d.log 2>&1
|
||
|
rm -fr /etc/first-boot.d
|
||
|
# delete itself
|
||
|
rm $0
|