diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-07-20 21:03:30 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-07-20 21:03:30 +0200 |
commit | 936b36fdf180fce830dbc388ec5e8fc35feb9474 (patch) | |
tree | 4f612a36f0fafb9d24f38a8d386066005f8b060d /data | |
parent | 69614d7d501811164010a83441ea807716903cf1 (diff) | |
download | vyos-1x-936b36fdf180fce830dbc388ec5e8fc35feb9474.tar.gz vyos-1x-936b36fdf180fce830dbc388ec5e8fc35feb9474.zip |
ipsec: T1210: create uuid from empty string in ios profile
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/ipsec/ios_profile.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/data/templates/ipsec/ios_profile.tmpl b/data/templates/ipsec/ios_profile.tmpl index 508f801d2..49e8b0992 100644 --- a/data/templates/ipsec/ios_profile.tmpl +++ b/data/templates/ipsec/ios_profile.tmpl @@ -9,7 +9,7 @@ <string>{{ rfqdn }}</string> <!-- A globally unique identifier, use uuidgen on Linux/Mac OS X to generate it --> <key>PayloadUUID</key> - <string>{{ 'random' | get_uuid }}</string> + <string>{{ '' | get_uuid }}</string> <key>PayloadType</key> <string>Configuration</string> <key>PayloadVersion</key> @@ -23,7 +23,7 @@ <string>{{ rfqdn }}.conf1</string> <!-- A globally unique identifier for this payload --> <key>PayloadUUID</key> - <string>{{ 'random' | get_uuid }}</string> + <string>{{ '' | get_uuid }}</string> <key>PayloadType</key> <string>com.apple.vpn.managed</string> <key>PayloadVersion</key> @@ -94,7 +94,7 @@ <key>PayloadIdentifier</key> <string>org.example.ca</string> <key>PayloadUUID</key> - <string>{{ 'random' | get_uuid }}</string> + <string>{{ '' | get_uuid }}</string> <key>PayloadType</key> <string>com.apple.security.root</string> <key>PayloadVersion</key> |