aboutsummaryrefslogtreecommitdiff
path: root/server/wallet-admin
diff options
context:
space:
mode:
authorRuss Allbery <eagle@eyrie.org>2016-01-17 12:39:57 -0800
committerRuss Allbery <eagle@eyrie.org>2016-01-17 12:39:57 -0800
commit884297fc439a4c3eba2365cdb810214dfc4f5799 (patch)
tree10b87c524861257948f0fc6f3caf3ad7ea147c0e /server/wallet-admin
parent57bcc0cb1e8893f6a39c4fcb902d02b920efde1a (diff)
Update Perl version declaration and warnings for server scripts
Add use 5.008 and use warnings uniformly to all of the server backend scripts.
Diffstat (limited to 'server/wallet-admin')
-rwxr-xr-xserver/wallet-admin9
1 files changed, 4 insertions, 5 deletions
diff --git a/server/wallet-admin b/server/wallet-admin
index 7ba1021..e74b2f1 100755
--- a/server/wallet-admin
+++ b/server/wallet-admin
@@ -1,12 +1,11 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
#
# Wallet server administrative commands.
-##############################################################################
-# Declarations and site configuration
-##############################################################################
-
+use 5.008;
use strict;
+use warnings;
+
use Wallet::Admin;
##############################################################################