Raspi-image-spec/rpi-set-sysconf

50 lines
1.1 KiB
Plaintext
Raw Normal View History

2019-07-19 04:54:47 +01:00
#!/usr/bin/perl
use strict;
use warnings;
use IO::File;
use IO::Pipe;
use feature 'switch';
my ($filename, $fh, %conf);
$filename = '/boot/firmware/sysconf.txt';
exit 0 unless -f $filename;
logger('info', "Applying the system configuration settings in $filename");
2019-07-19 04:54:47 +01:00
$fh = IO::File->new($filename, 'r');
while (my $line = $fh->getline) {
2019-07-19 04:54:47 +01:00
my ($key, $value);
# Allow for comments, and properly ignore them
$line =~ s/#.+//;
if ( ($key, $value) = ($line =~ m/^\s*([^=]+)\s*=\s*(.*)\s*$/)) {
$key = lc($key);
if (exists($conf{$key})) {
logger('warn',
"Repeated configuration key: $key. " .
"Overwriting with new value ($value)");
2019-07-19 04:54:47 +01:00
}
$conf{$key} = $value;
}
}
if (my $pass = delete($conf{root_pw})) {
my $pipe;
open($pipe, '|-', '/usr/sbin/chpasswd') or die $!;
print $pipe "root:$pass";
close($pipe);
2019-07-19 04:54:47 +01:00
}
if (scalar keys %conf) {
logger('warn', 'Unprocessed keys left in $filename: ' .
join(', ', sort keys %conf));
}
exit 0;
2019-07-19 04:54:47 +01:00
sub logger {
my ($prio, $msg) = @_;
system('/bin/logger', '-p', "daemon.$prio",
'-t', 'set-sysconf', $msg);
}