diff options
Diffstat (limited to 'FS/bin')
-rwxr-xr-x | FS/bin/freeside-daily | 2 | ||||
-rwxr-xr-x | FS/bin/freeside-monthly | 2 | ||||
-rw-r--r-- | FS/bin/freeside-radgroup | 8 | ||||
-rwxr-xr-x | FS/bin/freeside-upgrade | 15 |
4 files changed, 6 insertions, 21 deletions
diff --git a/FS/bin/freeside-daily b/FS/bin/freeside-daily index 6a542c7cd..e16cc5c9c 100755 --- a/FS/bin/freeside-daily +++ b/FS/bin/freeside-daily @@ -99,7 +99,7 @@ the bill and collect methods of a cust_main object. See L<FS::cust_main>. with today's date, irregardless of the pretend date used to pre-generate the invoices. - -p: Only process customers with the specified payby (CARD, DCRD, CHEK, DCHK, BILL, COMP, LECB) + -p: Only process customers with the specified payby (I<CARD>, I<DCRD>, I<CHEK>, I<DCHK>, I<BILL>, I<COMP>, I<LECB>) -a: Only process customers with the specified agentnum. Multiple agentnums can be specified, separated with commas. diff --git a/FS/bin/freeside-monthly b/FS/bin/freeside-monthly index 0d6ea14a2..a81e3e9ed 100755 --- a/FS/bin/freeside-monthly +++ b/FS/bin/freeside-monthly @@ -64,7 +64,7 @@ the bill and collect methods of a cust_main object. See L<FS::cust_main>. "pretend date" 15 days from whatever was specified by the -d switch (or now, if no -d switch was given). - -p: Only process customers with the specified payby (CARD, DCRD, CHEK, DCHK, BILL, COMP, LECB) + -p: Only process customers with the specified payby (I<CARD>, I<DCRD>, I<CHEK>, I<DCHK>, I<BILL>, I<COMP>, I<LECB>) -a: Only process customers with the specified agentnum diff --git a/FS/bin/freeside-radgroup b/FS/bin/freeside-radgroup index 332632942..ed85626d2 100644 --- a/FS/bin/freeside-radgroup +++ b/FS/bin/freeside-radgroup @@ -52,13 +52,13 @@ freeside-radgroup - Command line utility to manipulate radius groups =head1 DESCRIPTION -B<user> is a freeside user as added with freeside-adduser. + B<user> is a freeside user as added with freeside-adduser. -B<command> is the action to take. Available actions are: I<add> + B<command> is the action to take. Available actions are: I<add> -B<groupname> is the group to add (or remove, etc.) + B<groupname> is the group to add (or remove, etc.) -B<svcpart> specifies which accounts will be updated. + B<svcpart> specifies which accounts will be updated. =head1 EXAMPLES diff --git a/FS/bin/freeside-upgrade b/FS/bin/freeside-upgrade index aca545b84..d3723a188 100755 --- a/FS/bin/freeside-upgrade +++ b/FS/bin/freeside-upgrade @@ -71,21 +71,6 @@ if ( dbdef->table('cgp_rule_condition') && } -# RT required field flag -# for consistency with RT schema: mysql is in CamelCase, -# pg is in lowercase, and they use different data types. -my ($t, $creq, $cdis) = - map { driver_name =~ /^mysql/i ? $_ : lc($_) } - ('CustomFields','Required','Disabled'); - -if ( dbdef->table($t) && - ! dbdef->table($t)->column($creq) ) { - push @bugfix, - "ALTER TABLE $t ADD COLUMN $creq ". - dbdef->table($t)->column($cdis)->type . - ' NOT NULL DEFAULT 0'; -} - if ( $DRY_RUN ) { print join(";\n", @bugfix ). ";\n"; |