Skip to content

Commit bce64af

Browse files
Merge pull request #57 from pfrest/chore/rename-urls-after-repo-move
chore: rename urls and names after repo move
2 parents 7c0738c + d44f45c commit bce64af

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# pfSense SAML2 Authentication
22

3-
[![Quality](https://github.com/jaredhendrickson13/pfsense-saml2-auth/actions/workflows/quality.yml/badge.svg)](https://github.com/jaredhendrickson13/pfsense-saml2-auth/actions/workflows/quality.yml)
4-
[![Build](https://github.com/jaredhendrickson13/pfsense-saml2-auth/actions/workflows/build.yml/badge.svg)](https://github.com/jaredhendrickson13/pfsense-saml2-auth/actions/workflows/build.yml)
5-
[![Release](https://github.com/jaredhendrickson13/pfsense-saml2-auth/actions/workflows/release.yml/badge.svg)](https://github.com/jaredhendrickson13/pfsense-saml2-auth/actions/workflows/release.yml)
3+
[![Quality](https://github.com/pfrest/pfSense-pkg-saml2-auth/actions/workflows/quality.yml/badge.svg)](https://github.com/pfrest/pfSense-pkg-saml2-auth/actions/workflows/quality.yml)
4+
[![Build](https://github.com/pfrest/pfSense-pkg-saml2-auth/actions/workflows/build.yml/badge.svg)](https://github.com/pfrest/pfSense-pkg-saml2-auth/actions/workflows/build.yml)
5+
[![Release](https://github.com/pfrest/pfSense-pkg-saml2-auth/actions/workflows/release.yml/badge.svg)](https://github.com/pfrest/pfSense-pkg-saml2-auth/actions/workflows/release.yml)
66

77

8-
`pfsense-saml2-auth` is a packaged SAML2 authentication extension for the pfSense webConfigurator. Currently, pfSense
8+
`pfSense-pkg-saml2-auth` is a packaged SAML2 authentication extension for the pfSense webConfigurator. Currently, pfSense
99
only supports local, LDAP and RADIUS authentication and does not support any native multi-factor authentication (MFA).
1010
At this time, there is unfortunately no roadmap for native SAML2 authentication or native MFA options on pfSense. With
1111
[pfSense Plus](https://www.netgate.com/blog/pfsense-plus-21-02-release-and-pfsense-ce-2-5-0-release-now-available.html)
1212
being officially announced, it is unlikely we will see enterprise level features like SAML2 implemented in pfSense CE
1313
anytime soon. This can create major headaches when dealing with security compliance standards such as PCI DSS that may
14-
require MFA on firewall admin logins. `pfsense-saml2-auth` helps alleviate this problem by allowing you to integrate
14+
require MFA on firewall admin logins. `pfSense-pkg-saml2-auth` helps alleviate this problem by allowing you to integrate
1515
single sign-on (SSO) with an identity provider such as Okta or OneLogin. In doing so, you will be able to use the identity
1616
provider's built-in MFA for pfSense logins and greatly simplify user onboarding.<br><br>
1717

@@ -30,7 +30,7 @@ No need to create local users before authenticating.
3030
## Installation
3131
To install, simply run the following command from the pfSense command line:<br>
3232
```
33-
pkg add https://github.com/jaredhendrickson13/pfsense-saml2-auth/releases/latest/download/pfSense-2.8-pkg-saml2-auth.pkg
33+
pkg add https://github.com/pfrest/pfSense-pkg-saml2-auth/releases/latest/download/pfSense-2.8-pkg-saml2-auth.pkg
3434
```
3535

3636
To uninstall:<br>

pfSense-pkg-saml2-auth/files/etc/inc/saml2_auth/SAML2Auth.inc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ class SAML2Auth {
232232
# Variables
233233
$releases_file = "/usr/local/share/pfSense-pkg-saml2-auth/releases.json";
234234
$releases = json_decode(file_get_contents($releases_file), true);
235-
$fetch_releases_cmd = "curl -s https://api.github.com/repos/jaredhendrickson13/pfsense-saml2-auth/releases -m 10";
235+
$fetch_releases_cmd = "curl -s https://api.github.com/repos/pfrest/pfSense-pkg-saml2-auth/releases -m 10";
236236

237237
# Check if our previous releases data is older than 120 seconds
238238
if ($releases["last_updated"] + 120 < time()) {
@@ -312,7 +312,7 @@ class SAML2Auth {
312312
# Update to the latest version of the package
313313
public function update_pkg($version="latest", $console=false) {
314314
# Local variables
315-
$base_url = "https://github.com/jaredhendrickson13/pfsense-saml2-auth/releases";
315+
$base_url = "https://github.com/pfrest/pfSense-pkg-saml2-auth/releases";
316316

317317
# Format the package URL based on the requested version
318318
if ($version === "latest") {

pfSense-pkg-saml2-auth/files/usr/local/share/pfSense-pkg-saml2-auth/info.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<name>SAML2 Authentication</name>
55
<internal_name>saml2-auth</internal_name>
66
<descr><![CDATA[A SAML2 authentication extension for the pfSense UI]]></descr>
7-
<website>https://github.com/jaredhendrickson13/pfsense-saml2-auth</website>
7+
<website>https://github.com/pfrest/pfSense-pkg-saml2-auth</website>
88
<category>System</category>
99
<version>%%PKGVERSION%%</version>
1010
<configurationfile>saml2_auth.xml</configurationfile>

pfSense-pkg-saml2-auth/files/usr/local/www/saml2_auth/update/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
$update_status_section->addInput(new Form_StaticText('Current Version', $curr_ver.$curr_ver_msg));
5454
$update_status_section->addInput(new Form_StaticText(
5555
'Latest Version',
56-
$latest_ver." - <a href='https://github.com/jaredhendrickson13/pfsense-saml2-auth/releases/tag/v".$latest_ver."'>View Release</a>"." - Released on ".$latest_ver_date
56+
$latest_ver." - <a href='https://github.com/pfrest/pfSense-pkg-saml2-auth/releases/tag/v".$latest_ver."'>View Release</a>"." - Released on ".$latest_ver_date
5757
));
5858

5959
# Populate our update settings form

pfSense-pkg-saml2-auth/pkg-descr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
A SAML2 authentication extension for the pfSense UI
2-
WWW: https://github.com/jaredhendrickson13/pfsense-saml2-auth
2+
WWW: https://github.com/pfrest/pfSense-pkg-saml2-auth

tools/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ found in the `templates` subdirectory
1717
### Output
1818
Command will output the FreeBSD make command output. Outputs the following files:
1919

20-
- `pfsense-saml2-auth/pfSense-pkg-saml2-auth/Makefile` : The rendered Makefile
21-
- `pfsense-saml2-auth/pfSense-pkg-saml2-auth/pkg-plist`: The rendered pkg-plist
22-
- `pfsense-saml2-auth/pfSense-pkg-saml2-auth/pfSense-pkg-saml2-auth-<VERSION>.pkg` : The FreeBSD package distribution file. On FreeBSD 11,
23-
this should be located in the `pfsense-saml2-auth/pfSense-pkg-saml2-auth` directory after completion. On FreeBSD 12 it should be
24-
located in the `pfsense-saml2-auth/pfSense-pkg-saml2-auth/work/pkg` directory.
20+
- `pfSense-pkg-saml2-auth/pfSense-pkg-saml2-auth/Makefile` : The rendered Makefile
21+
- `pfSense-pkg-saml2-auth/pfSense-pkg-saml2-auth/pkg-plist`: The rendered pkg-plist
22+
- `pfSense-pkg-saml2-auth/pfSense-pkg-saml2-auth/pfSense-pkg-saml2-auth-<VERSION>.pkg` : The FreeBSD package distribution file. On FreeBSD 11,
23+
this should be located in the `pfSense-pkg-saml2-auth/pfSense-pkg-saml2-auth` directory after completion. On FreeBSD 12 it should be
24+
located in the `pfSense-pkg-saml2-auth/pfSense-pkg-saml2-auth/work/pkg` directory.
2525

2626
### Notes
2727
- This script heavily depends on it's relative filepaths. You may execute the script from any directory, but do not move

tools/make_package.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
import sys
2424
import jinja2
2525

26-
REPO_OWNER = "jaredhendrickson13"
27-
REPO_NAME = "pfsense-saml2-auth"
26+
REPO_OWNER = "pfrest"
27+
REPO_NAME = "pfSense-pkg-saml2-auth"
2828

2929

3030
class MakePackage:

0 commit comments

Comments
 (0)