#!/usr/bin/perl

my $ALBUM_BIN = "/usr/local/sbin/setuid_album";
my $ALBUM_DIR = "/WWW/web/others/RulerOfAllMen.com/Album";
my $ALBUM_URL = "http://RulerOfAllMen.com/Album";

# Redirect
print <<END;
Content-type: text/html

<html>
<title>Building a new album</title>
<body bgcolor=white>
  <h1>Patience...</h1> <br><br>
  I'm building a new <a href=$ALBUM_URL>album</a>
  right now - please wait a few moments for the build to complete
  <p>
  <font size=+1><b>Please do not reload this page multiple times!</b></font>
</body>
</html>
END

system("nohup $ALBUM_BIN $ALBUM_DIR > /dev/null &");

