lyadmin/perl-script/provision.pl

19 lines
409 B
Perl
Raw Normal View History

#!/usr/bin/perl
use warnings;
use strict;
# This script is intended to be run on a fresh
# OpenBSD install
my $admin_un;
# Check /etc/passwd for the username created during
# installation
2020-11-28 15:28:55 -05:00
if( ($admin_un) = `tail /etc/passwd` =~ /([^:]+):[^:]+:[0-9]{4,}/){
printf("admin user will be set to %s\n", $admin_un);
}else{
die "create a non-root user & set user passsword before running this script."
}