ソースを参照

provision.pl: added check for root user. added author header

tags/release-00
gashapwn 3年前
コミット
39b5e46b02
1個のファイルの変更16行の追加0行の削除
  1. +16
    -0
      perl-script/provision.pl

+ 16
- 0
perl-script/provision.pl ファイルの表示

@@ -3,11 +3,27 @@
use warnings;
use strict;

# provision.pl
# script to provision a tilde instance
#
# This script is intended to be run on a fresh
# OpenBSD install
#
# gashapwn
# Nov 2020


my $pwuid;
my $admin_un;


# Make sure we're running as root
$pwuid = getpwuid( $< );

if($pwuid ne "root"){
die "script must be run as root";
}

# Check /etc/passwd for the username created during
# installation
if( ($admin_un) = `tail /etc/passwd | grep -v "nobody:"` =~ /([^:]+):[^:]+:[0-9]{4,}/){


読み込み中…
キャンセル
保存